export type BasicCredentialsType = { username: string; password: string; }; export declare function basicAuthHeader(username: BasicCredentialsType['username'], password: BasicCredentialsType['password']): string;