import { IName } from '../../..'; /** * the username for login * * @minimum 4 * @maximum 40 * @TJS-type string */ export declare type IUsername = IName; export declare const isIUsername: (t: any) => t is string; /** * the user password * * @minimum 8 * @maximum 14 * @format password * @TJS-type string */ export declare type IPassword = IName; export declare const isIPassword: (t: any) => t is string; export interface ICredentials { username: IUsername; password: IPassword; } export declare const isICredentials: (t: any) => t is ICredentials;