import { ComponentProps, FC } from 'react'; import { Alignment } from './types/alignment'; import { Color } from './types/color'; import { Size } from './types/size'; type Props = { name?: string; alignment?: Alignment; color?: Color; size?: Size; boxed?: boolean; fullwidth?: boolean; }; export declare const File: FC, keyof Props> & Props>; export {};