/// import { ISpecifier } from '../../../types'; export interface Props { name: string; exports: { [source: string]: ISpecifier | ISpecifier[]; }; typeName: string; } declare function DefinitionTSFile({ name, exports, typeName }: Props): JSX.Element; export default DefinitionTSFile;