export declare function getBasicAuthHeader(input: BasicAuthInput): string; export interface BasicAuthInput { username: string; password: string; }