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