export interface BasicAuth { username: string; password: string; } export declare function getBasicAuthFromHeader(headerValue: string): BasicAuth;