import { UploadChangeParam } from 'antd/lib/upload'; export declare type UseFileUploadStateType = () => { isLoading: boolean; onChange: (info: UploadChangeParam) => void; }; export declare const useFileUploadState: UseFileUploadStateType;