import React from 'react'; import { AlertTypes } from '../../../models'; interface FileUploaderProps { id: string; name: string; label: string; accept?: string; labelButton?: string; sublabel?: string; fullWidth?: boolean; bgColorDisplayUpload?: string; bgColorDisabled?: string; disabled?: boolean; flexDirection?: 'column' | 'row'; value: File | null; onChange?: ((event: React.ChangeEvent, value: File, name: string) => void); onReset?: () => void; alert?: { message?: string; type: AlertTypes; }; } export declare const InputFileUploader: (props: FileUploaderProps) => JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map