import type * as ElevenLabs from "../index"; export interface ToolResponseMockConfigInput { /** If the list is empty, the mock will always activate. */ parameterConditions?: ElevenLabs.UnitTestToolCallParameter[]; /** The return value the LLM sees when this mock is active. */ mockResult: string; /** If true, the mock result is surfaced to the LLM as a tool error rather than a successful result. */ isError?: boolean; }