import Joi from 'joi'; import type { ExtractValues } from '../helpers'; export declare const loginDestinations: readonly ["mobile"]; export declare type LoginDestinations = ExtractValues; export interface ICheckLoginParams { email: string; destination: LoginDestinations; } export declare const checkLoginParamsSchema: Joi.ObjectSchema; export interface ICheckLoginResult { status: 'signed-up' | 'email-sent' | 'contact-administrator'; }