import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { ClientFacingApiKey } from "./ClientFacingApiKey.js"; import { DelegatedFlowType } from "./DelegatedFlowType.js"; import { TeamConfig } from "./TeamConfig.js"; export declare const ClientFacingTeam: core.serialization.ObjectSchema; export declare namespace ClientFacingTeam { interface Raw { id: string; org_id: string; name: string; svix_app_id?: string | null; client_id?: string | null; client_secret?: string | null; airtable_api_key?: string | null; airtable_base_id?: string | null; webhook_secret?: string | null; api_key?: string | null; api_keys?: ClientFacingApiKey.Raw[] | null; configuration?: TeamConfig.Raw | null; testkits_texts_enabled: boolean; lab_tests_patient_communication_enabled: boolean; lab_tests_patient_sms_communication_enabled: boolean; lab_tests_patient_email_communication_enabled: boolean; logo_url?: string | null; delegated_flow: DelegatedFlowType.Raw; critical_result_notification_email?: string | null; } }