export declare class Credentials {
    private token;
    constructor(token: string);
    get base64Encoded(): string;
    private get buffered();
}
