import { default as React } from 'react'; import { FieldValues } from 'react-hook-form'; import { ISchemaFormProps } from '../interface/form.interface'; /** * FormixProvider component that provides the formix form context to its children. * @template TFieldValues - The type of field values. * @param {ISchemaFormProps & { children: React.ReactNode }} props - The properties for the schema form provider. * @returns {JSX.Element} - The FormixProvider component. */ declare const FormixProvider: (props: ISchemaFormProps & { children: React.ReactNode; }) => JSX.Element; export default FormixProvider;