export interface ValidationError { field: string; message: string; severity: "error" | "warning"; } /** * Validate JSON module definition * * @param schema - JSON module definition * @returns Array of validation errors (empty if valid) */ export declare function validateJsonSchema(schema: any): ValidationError[]; /** * Check if validation passed (no errors, only warnings allowed) * * @param errors - Validation errors * @returns true if validation passed */ export declare function validationPassed(errors: ValidationError[]): boolean; /** * Format validation errors for display * * @param errors - Validation errors * @returns Formatted error message */ export declare function formatValidationErrors(errors: ValidationError[]): string; //# sourceMappingURL=json-schema-validator.d.ts.map