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