/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ export interface SixthUserInfo { id: string; company_name: string; company_description: string | null; email: string; user_type: string; subscriber: boolean; country: string; fullname: string; is_admin: boolean; } export interface SixthAuthConfig { webUrl: string; apiUrl: string; callbackPort: number; } export declare const SIXTH_AUTH_CONFIG: SixthAuthConfig;