export interface IOAuthCredentials {
    accessToken: string;
    tokenType: string;
}
export declare class OAuthCredentials implements IOAuthCredentials {
    accessToken: string;
    tokenType: string;
    set(accessToken: string, tokenType: string): void;
}
