import type { TenantValidationResult } from "./types.js"; export declare function buildJsonReport(results: TenantValidationResult[]): { valid: boolean; tenants: { id: string; valid: boolean; files: number; errors: { file: string; path: string | undefined; message: string; }[]; }[]; summary: { tenants: number; files: number; errors: number; }; }; export declare function formatTextReport(scope: "tenant" | "tenants", rootPath: string, results: TenantValidationResult[]): string; //# sourceMappingURL=report.d.ts.map