import { FC } from 'react'; import { IFormElement } from '../../types'; export interface IFileProps extends IFormElement { handleChange: any; placeholder?: string; fileValue: File | null; multiple?: boolean; accept?: string; subLabel?: string; } export declare const File: FC;