import { AvatarProps } from "@mantine/core"; import { FormControlProps } from "@mongez/react-form"; import React from "react"; import { UploadingFileValidationOptions } from "./DropzoneInput"; export type ImageInputProps = AvatarProps & FormControlProps & UploadingFileValidationOptions & { size?: AvatarProps; circle?: boolean; clearable?: boolean; description?: React.ReactNode; hint?: React.ReactNode; }; export declare function ImageInput({ clearable, circle, description, hint, label, required, minWidth, maxWidth, imageWidth, minHeight, maxHeight, imageHeight, minSize, maxSize, ...props }: ImageInputProps): any; export declare namespace ImageInput { var defaultProps: { rules: any[]; size: string; clearable: boolean; }; } //# sourceMappingURL=ImageInput.d.ts.map