import { Account } from "./Account"; import { IdToken } from "./IdToken"; export declare type AuthResponse = { uniqueId: string; tenantId: string; tokenType: string; idToken: IdToken; accessToken: string; scopes: Array; expiresOn: Date; account: Account; accountState: string; }; export declare function buildResponseStateOnly(state: string): AuthResponse;