import React from "react"; export declare type CaFileInputProps = { name?: string; hoverTitle?: string; types?: string[]; className?: string; children?: JSX.Element; maxSize?: number; minSize?: number; fileOrFiles?: File[] | File | null; disabled?: boolean | false; label?: string; multiple?: boolean | false; required?: boolean | false; onSizeError?: (arg0: string) => void; onTypeError?: (arg0: string) => void; onDrop: (arg0: File | File[]) => void; onSelect?: (arg0: File | File[]) => void; handleChange?: (arg0: File | File[] | File) => void; onDraggingStateChange?: (dragging: boolean) => void; dropMessageStyle?: React.CSSProperties | undefined; }; declare const CaFileInput: React.FC; export default CaFileInput;