import { Credential } from './auth';
export declare class BasicCredential implements Credential {
    private readonly username;
    private readonly password;
    constructor(username: string, password: string);
    getName(): string;
    setAuth(headers: Record<string, string>): void;
}
