import react__default, { FunctionComponent } from 'react';

type CustomFieldProps = {
    inputField: react__default.FC<{
        onChange: (data: unknown) => void;
    }>;
    onChange?: (data: unknown) => void;
    defaultValue?: unknown;
    value?: unknown;
    placeholder?: string;
    transformValue?: (value?: unknown) => void;
    internalChange?: () => void;
};
declare const CustomField: FunctionComponent<CustomFieldProps>;

export { CustomField as default };
export type { CustomFieldProps };
