import React from "react"; import type { UploaderProps } from "../../util/UploadUtil/type"; export interface Props extends UploaderProps { children: React.ReactNode; /** * Please follow W3C standard for HTML accept string. * Ref: * https://www.w3schools.com/tags/att_input_accept.asp */ accept: string; beforeUpload?: (file: File) => boolean | Promise; className?: string; style?: React.CSSProperties; disabled?: boolean; } export declare const Uploader: (props: Props) => React.JSX.Element;