import { AccountInfo } from "./AccountInfo"; export type TokenResponse = { access_token: string; account: AccountInfo; client_info: string; expires_in: number; id_token: string; properties: TokenResponseProperties | null; scope: string; state: string; shr?: string; extendedLifetimeToken?: boolean; }; export type TokenResponseProperties = { MATS?: string; }; //# sourceMappingURL=TokenResponse.d.ts.map