import { ReformReturn } from '../../../types'; import { DynamicSchemaConfig, DynamicSchemaReturn } from './types'; /** * Hook for managing dynamic schema validation * * @template T - The type of form data * @param reform - The Reform hook return value * @param config - Configuration for dynamic schema validation * @returns Dynamic schema validation state and methods */ export declare const useDynamicValidation: >(reform: ReformReturn, config: DynamicSchemaConfig) => DynamicSchemaReturn;