import { FC } from 'react'; export interface CustomRequestData { onProgress: (event: { percent: number; }) => void; onError: (event: Error, body?: object) => void; onSuccess: (body: object) => void; data: object; filename: string; file: File; withCredentials: boolean; action: string; headers: object; } export interface SUploadFileValue { uid?: string | number; url?: string; name?: string; } interface SUploadFilesProps { action?: string; value?: SUploadFileValue[]; onChange?: (value: SUploadFileValue[]) => void; customRequest?: (option: CustomRequestData) => void; maxFileM?: number; maxFiles?: number; accept?: string; } declare const SUploadFiles: FC; export default SUploadFiles;