6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
import { type FC } from 'react';
|
|
declare const Foo: FC<{
|
|
title: string;
|
|
}>;
|
|
export default Foo;
|