import { tool } from "@opencode-ai/plugin/tool"; import { RuntimePressureToolInputSchema, type RuntimePressureToolInput } from "../../schema-kernel/runtime-pressure.schema.js"; /** * Create the Hivemind runtime pressure tool. * * @param projectRoot - Trusted project root whose trajectory ledger may receive pressure evidence. * @returns OpenCode tool exposing classify, detect, inspect_tool_catalog, and attach_event actions. * * @example * ```typescript * const hivemindPressure = createHivemindPressureTool(process.cwd()) * ``` */ export declare function createHivemindPressureTool(projectRoot: string): ReturnType; /** * Execute a validated runtime-pressure tool action. * * @param projectRoot - Trusted project root. * @param args - Validated runtime-pressure arguments. * @returns Serializable action result. */ export declare function executeRuntimePressureToolAction(projectRoot: string, args: RuntimePressureToolInput): unknown; export { RuntimePressureToolInputSchema }; //# sourceMappingURL=hivemind-pressure.d.ts.map