/** * manifest validate command * * Validates IR against the schema using Ajv for full JSON Schema compliance. */ interface ValidateOptions { schema?: string; strict: boolean; /** Config G2 / CLI — overrides config `validation.failOn`. */ failOn?: string; } /** * Validate command handler */ export declare function validateCommand(ir: string | undefined, options: ValidateOptions): Promise; export {}; //# sourceMappingURL=validate.d.ts.map