export interface SlsAuthUser {
    id: string;
    emails: Array<string>;
    phones: Array<string>;
    password?: string;
}
