import React from "react"; import { ColorSpecifier } from "../../theme/theme"; export interface UploaderProps { color?: ColorSpecifier; width?: string; height?: string; getUploadParams?: () => void; onChangeStatus: (args: any) => void; multiple?: boolean; maxFiles?: number; fontSize?: string; iconSize?: string; accept: string; dragAndDropMessage?: string; customIcon?: string | React.ReactElement>; hasBrowseButton?: boolean; browsButtonMessage?: { noFiles: string; hasFiles: string; }; } declare const Uploader: ({ color, width, height, getUploadParams, onChangeStatus, multiple, maxFiles, fontSize, iconSize, accept, customIcon, dragAndDropMessage, hasBrowseButton, browsButtonMessage, }: UploaderProps) => React.JSX.Element; export default Uploader;