import { FileInputButton } from './components/Button'; import { ListFiles } from './components/List'; import type { FileInputProps } from './types'; /** * FileInput allow user to drag & drop and upload one or multiple files. */ declare const FileInputBase: { ({ style, className, variant, size, title, children, onDrop, label, labelDescription, disabled, accept, id, 'aria-label': ariaLabel, defaultFiles, onChangeFiles, helper, multiple, bottom, required, error, onChange, onFocus, onBlur, name, onKeyDown, onKeyUp, disabledDragndrop, validator, onDropError, 'data-testid': dataTestid, 'aria-describedby': ariaDescribedBy, allowDirectories, }: FileInputProps): import("react").JSX.Element; displayName: string; }; export declare const FileInput: typeof FileInputBase & { Button: typeof FileInputButton; List: typeof ListFiles; }; export {}; //# sourceMappingURL=index.d.ts.map