/** * Basic authentication details extracted from * a request. */ export declare class BasicAuth { username: string; password: string; }