import { type AgentToolOptions } from './types/assistants'; /** * Collapses the encoded-domain suffix of an action tool name to the shape used * by runtime tool definitions. The operation id is deliberately preserved. */ export declare function normalizeActionToolName(toolName: string): string; /** * Removes Code Interpreter as an allowed caller without mutating the input. * Tool entries and unrelated options are preserved; an empty entry is removed. */ export declare function removeCodeExecutionCaller(toolOptions: AgentToolOptions | undefined): AgentToolOptions | undefined;