import { ISuccessfulAuthenticationResult } from "../..";
/**
 * @deprecated Use @studyportals/client-internal-platform-sso
 */
declare class SuccessfulAuthenticationResult implements ISuccessfulAuthenticationResult {
    __i_successful_authentication_result__: true;
    private _userIdentifier;
    private _idToken;
    private _refreshToken;
    private _idTokenAvailabilityInMs;
    private _idTokenTimeOfCreation;
    constructor(userIdentifier: string, idToken: string, refreshToken: string, idTokenAvailabilityInMs: number, idTokenTimeOfCreation: Date);
    get userIdentifier(): string;
    get idToken(): string;
    get refreshToken(): string;
    get idTokenAvailabilityInMs(): number;
    get idTokenTimeOfCreation(): Date;
}
export { SuccessfulAuthenticationResult };
