import { User } from "./types/session"; export declare function isUserExists(username: string): boolean; export declare function verifyUserPassword(username: string, passowrd: string): boolean; export declare function getUserByEmail(email: string): Promise; export declare function getUserByPhone(phone: string): Promise; export declare function getUserByUserID(userID: string): Promise;