import type { IFileUpload } from './types'; import type React from 'react'; export declare const FileUpload: ({ handleFile, color, size, variant, multiple, accept, maxFiles, maxFileSize, maxTotalSize, name, Icon, ariaLabel, ariaDescribedBy, helpText, required }: IFileUpload & { ariaLabel?: string; ariaDescribedBy?: string; helpText?: string; required?: boolean; }) => React.JSX.Element;