import type { ScanResultV2 } from './types'; export interface CensusReportOptions { /** Absolute path that was scanned (printed in the header) */ scanPath: string; /** Scanner version string, e.g. "1.2.0" */ version?: string; /** Report generation time (defaults to now) */ generatedAt?: Date; } /** * Render a ScanResultV2 as a customer-presentable agent-estate census in * markdown. Static-scan truth only: trace-emission status (emitting vs dark) * is a runtime fact and is deliberately reported as "unverified" here — * it is confirmed against recorded runs once agents are registered. */ export declare function generateCensusReport(result: ScanResultV2, opts: CensusReportOptions): string; //# sourceMappingURL=report.d.ts.map