/// <reference types="react" />
import { InputProps } from '../components';
interface ImageProps {
    path: string;
    uploadDir?(formValues: any): string;
    clearable?: boolean;
}
export declare const ImageField: (props: import("./wrapFieldWithMeta").InputFieldType<InputProps, ImageProps>) => JSX.Element;
export declare const ImageFieldPlugin: {
    name: string;
    Component: (props: import("./wrapFieldWithMeta").InputFieldType<InputProps, ImageProps>) => JSX.Element;
    parse: (value?: string) => string;
    validate(value: any, values: any, meta: any, field: any): string;
};
export {};
