import { type IAuth } from './IAuth.js';
export declare class Basic implements IAuth {
    private readonly _user;
    private readonly _pass;
    constructor(user: string, pass: string);
    getUser(): string;
    getPass(): string;
    buildHeader(): Promise<string>;
}
//# sourceMappingURL=Basic.d.ts.map