import React, { ReactNode } from 'react'; interface FileTypeIconProps { ext?: ReactNode; height: string; fontSize: string; } declare const FileTypeIcon: ({ ext, height, fontSize }: FileTypeIconProps) => React.JSX.Element; export default FileTypeIcon;