import type { FC } from 'react';
import type { UploadProps } from 'antd/lib/upload/interface';
interface InnerUploadGroupProps {
    value?: any;
    onChange?: (value: any) => void;
}
interface UploadGroupProps extends UploadProps {
    sort?: string;
    inputVerify?: any;
    $$componentItem?: any;
    getEngineApis?: any;
}
declare const CheckUploadGroup: FC<UploadGroupProps & InnerUploadGroupProps>;
export default CheckUploadGroup;
