/** * JSON Schema Export for Validation Result * * Generates JSON Schema from Zod validation result schema to enable * validation of examples in documentation and agent integration guides. */ /** * Generate JSON Schema from Zod validation result schema * * This schema can be used to validate examples in documentation: * ```yaml * # Example validation result * passed: false * timestamp: "2025-10-20T12:00:00.000Z" * treeHash: "abc123..." * failedStep: "TypeScript" * ``` * * @returns JSON Schema object */ export declare function generateValidationResultJsonSchema(): object; /** * Pre-generated JSON Schema (exported for bundling in npm package) */ export declare const validationResultJsonSchema: object; //# sourceMappingURL=result-schema-export.d.ts.map