import React, { ComponentPropsWithoutRef } from 'react'; import { Action, Localization } from './types'; export interface Props extends ComponentPropsWithoutRef<'input'> { action?: Action; description?: string; viewType?: 'row' | 'block'; icon?: React.ReactNode; label?: string; localization: Localization; onFilesChange(files: FileList | null): void; } export declare const DropZone: ({ accept, action, description, disabled, icon, id, label, localization, multiple, viewType, onFilesChange, ...props }: Props) => React.JSX.Element; //# sourceMappingURL=DropZone.d.ts.map