import { PropsWithChildren } from 'react'; export declare type FileUploadButtonProps = { handleFiles: (files: FileList | File[]) => void; multiple?: boolean; disabled?: boolean; accepts?: string | string[]; resetOnChange?: boolean; }; export declare const FileUploadButton: ({ disabled, multiple, children, handleFiles, accepts, resetOnChange, }: PropsWithChildren) => JSX.Element; //# sourceMappingURL=FileUploadButton.d.ts.map