export declare class AuthenticationResult { private _token; private _tokenType; constructor(token: string, tokenType?: string); token: string; tokenType: string; }