import type * as ElevenLabs from "../index"; /** * Orchestrator-side config: tools are identified by resolved names. */ export interface OrchestratorToolMockBehaviorConfig { /** Which tools to mock: 'all' mocks every mockable tool, 'selected' mocks only those in mocked_tool_names/mocked_tool_ids, 'none' disables mocking. */ mockingStrategy?: ElevenLabs.MockingStrategy; /** Behavior when no mock matches a tool call. */ fallbackStrategy?: ElevenLabs.MockNoMatchBehavior; /** Tool names to mock. Only used when mocking_strategy is 'selected'. */ mockedToolNames?: string[]; }