export declare class AuthenticationResponse { private readonly _tokenType; private readonly _accessToken; private readonly _expiryInterval; constructor(tokenType: string, accessToken: string, expiryInterval: number); get tokenType(): string; get accessToken(): string; get expiryInterval(): number; }