/// <reference types="react" />
import type { FieldValues } from 'react-hook-form';
import type { FormSchemaType } from '../store/store';
declare type Props = {
    data: FormSchemaType;
    onSubmit: (data: FieldValues) => void;
};
export declare const FormRendererForm: ({ data, onSubmit }: Props) => JSX.Element;
export {};
