import { LocaleType } from "../../../interfaces/types";
import { UseTranslationsReturn } from "../../../hooks";
import * as yup from 'yup';
export declare const otpSchema: (t: UseTranslationsReturn<LocaleType>['t']) => yup.ObjectSchema<{
    otp: string;
}, yup.AnyObject, {
    otp: "";
}, "">;
