import { type IAuth } from './IAuth.js';
export declare class Bearer implements IAuth {
    private readonly _token;
    constructor(token: string);
    getToken(): string;
    buildHeader(): Promise<string>;
}
//# sourceMappingURL=Bearer.d.ts.map