import type { Schema } from '@typeschema/main'; import { FieldValues, ResolverOptions, ResolverResult } from 'react-hook-form'; export type Resolver = ( schema: T, schemaOptions?: never, factoryOptions?: { /** * Return the raw input values rather than the parsed values. * @default false */ raw?: boolean; }, ) => ( values: TFieldValues, context: TContext | undefined, options: ResolverOptions, ) => Promise>;