import { FieldValues, ResolverOptions, ResolverResult } from 'react-hook-form'; import { BaseIssue, BaseSchema, BaseSchemaAsync, Config, InferIssue, } from 'valibot'; export type Resolver = < T extends | BaseSchema> | BaseSchemaAsync>, >( schema: T, schemaOptions?: Partial< Omit>, 'abortPipeEarly' | 'skipPipe'> >, resolverOptions?: { /** * @default async */ mode?: 'sync' | 'async'; /** * Return the raw input values rather than the parsed values. * @default false */ raw?: boolean; }, ) => ( values: TFieldValues, context: TContext | undefined, options: ResolverOptions, ) => Promise>;