import { AbstractAuthMaterial } from "./AbstractAuthMaterial";
import { Credentials } from "./token";
export declare class AuthenticationMaterial extends AbstractAuthMaterial {
    private readonly userName;
    private readonly password;
    constructor(user: string, password: string);
    getCredentials(): Credentials | undefined;
    getRawAuthHeader(): string | undefined;
    getToken(): string;
}
