import React, { PropsWithChildren } from 'react'; export type FileUploadButtonProps = { handleFiles: (files: FileList | File[]) => void; accepts?: string | string[]; disabled?: boolean; multiple?: boolean; resetOnChange?: boolean; }; /** * @deprecated will be removed in the next major release */ export declare const FileUploadButton: ({ disabled, multiple, children, handleFiles, accepts, resetOnChange, }: PropsWithChildren) => React.JSX.Element; //# sourceMappingURL=FileUploadButton.d.ts.map