import { tool } from "@opencode-ai/plugin"; import type { SessionState } from "../state"; import type { PluginConfig } from "../config"; import type { Logger } from "../logger"; export interface PruneToolContext { client: any; state: SessionState; logger: Logger; config: PluginConfig; workingDirectory: string; } export declare function createDiscardTool(ctx: PruneToolContext): ReturnType; export declare function createExtractTool(ctx: PruneToolContext): ReturnType; //# sourceMappingURL=tools.d.ts.map