import type { OrchestratorConfig } from "./BaseConnection.js"; export declare const ENCLAVE_SETUP_CONFIG_TYPE = "enclave_setup_config"; export type EnclaveSetupConfigEvent = { type: typeof ENCLAVE_SETUP_CONFIG_TYPE; agent_config_dict: Record | null; override_agent_config_list: Record[] | null; tools_config_list: Record[] | null; prompt_knowledge_base: string[] | null; bedrock_inference_profile?: string; post_call_transcription_webhook?: { url: string; hmac_secret?: string; }; post_call_audio_webhook?: { url: string; hmac_secret?: string; }; }; export declare function constructEnclaveSetupConfig(config: OrchestratorConfig): EnclaveSetupConfigEvent; //# sourceMappingURL=orchestrator.d.ts.map