/** * validate-restart tool — post-restart validation for OpenCode primitives. * * Simulates OpenCode discovery by loading all primitives and running * runtime validation to detect issues that would prevent successful restart. * * @module validate-restart */ import { tool } from "@opencode-ai/plugin/tool"; import { z } from "zod"; export declare const ValidateRestartInputSchema: z.ZodObject<{ projectRoot: z.ZodOptional; verbose: z.ZodDefault; }, z.core.$strip>; export declare function createValidateRestartTool(): ReturnType; //# sourceMappingURL=validate-restart.d.ts.map