import { FieldValues } from 'react-hook-form'; import { ISchemaFormProps, UseSchemaFormReturn } from '../interface/form.interface'; /** * Custom hook for handling schema-based forms with validation and conditional rendering. * @template TFieldValues - The type of field values. * @param {ISchemaFormProps} props - Properties for the schema form. * @returns {UseSchemaFormReturn} - The state and methods for managing the schema form. */ declare const useSchemaForm: (props: ISchemaFormProps) => UseSchemaFormReturn; export default useSchemaForm;