import { FC } from 'react'; import { FlexboxProps } from 'react-layout-kit'; import { type IconProps } from "../Icon"; export interface FileProps extends Omit { icon?: IconProps['icon']; name: string; } declare const File: FC; export default File;