export declare type FormControlProps = {
    component: string;
    formErrors: any;
    formInitialValue: any;
    formModel: any;
    formRegister: Function;
    message: {
        validation: any;
    };
    props: any;
    schemaPath: string;
    setFormValue: Function;
};
declare const _default: ({ props, component, formRegister, formModel, setFormValue, formErrors, formInitialValue, ...rest }: FormControlProps) => JSX.Element | null;
export default _default;
