import type { KlawCodingToolConstructionPlan } from "../../pi-tools.js"; export declare function applyEmbeddedAttemptToolsAllow(tools: T[], toolsAllow?: string[], options?: { toolMeta?: (tool: T) => { pluginId: string; } | undefined; }): T[]; export declare function mergeForcedEmbeddedAttemptToolsAllow(toolsAllow: string[] | undefined, params: { forceMessageTool?: boolean; }): string[] | undefined; export declare function resolveEmbeddedAttemptToolConstructionPlan(params: { disableTools?: boolean; isRawModelRun?: boolean; toolsAllow?: string[]; forceMessageTool?: boolean; }): { constructTools: boolean; includeCoreTools: boolean; runtimeToolAllowlist?: string[]; codingToolConstructionPlan: KlawCodingToolConstructionPlan; }; export declare function shouldBuildCoreCodingToolsForAllowlist(toolsAllow?: string[]): boolean; export declare function shouldCreateBundleMcpRuntimeForAttempt(params: { toolsEnabled: boolean; disableTools?: boolean; toolsAllow?: string[]; }): boolean; export declare function shouldCreateBundleLspRuntimeForAttempt(params: { toolsEnabled: boolean; disableTools?: boolean; toolsAllow?: string[]; }): boolean;