/**
 * Account properties returned by Native Platform e.g. WAM
 */
export declare type NativeAccountInfo = {
    id: string;
    properties: object;
    userName: string;
};
/**
 * Token response returned by Native Platform e.g. WAM
 */
export declare type NativeResponse = {
    access_token: string;
    account: NativeAccountInfo;
    client_info: string;
    expires_in: number;
    id_token: string;
    properties: object;
    scopes: string;
    state: string;
    shr?: string;
    extendedLifetimeToken?: boolean;
};
//# sourceMappingURL=NativeResponse.d.ts.map