import { Role } from '../general'; export interface ClientLogin_Req { email: string; password: string; } export declare const CLIENT_LOGIN_REQ: import("wav-requests").Group>; export interface AdminLogin_Req { email: string; password: string; role?: Role.REL | Role.KING; } export declare const ADMIN_LOGIN_REQ: import("wav-requests").Group>; export interface MakeToken_Req { user_id: string; role: Role; } export declare const MAKE_TOKEN_REQ: import("wav-requests").Group>;