import { UploadProps } from 'antd';
import { ImgCropProps } from 'antd-img-crop';
import { FC } from 'react';
import { UPLOAD_IMG_CROP } from '../../../Types';
interface IChildren extends Omit<ImgCropProps, 'children'> {
    upload: UploadProps;
}
export interface IUploadImgCrop {
    ctype: typeof UPLOAD_IMG_CROP;
    props: IChildren;
}
declare const UploadImgCrop: FC<IUploadImgCrop>;
export default UploadImgCrop;
