import type { BaseSchema } from 'yup';
import { Validator } from '../../validator';
/**
 * Returns a Validator created based on the specified Yup schema.
 *
 * @param schema - Yup schema
 */
export declare function yupResolver(schema: BaseSchema): Validator;
