import type { IndexDatabase } from '../../db/database.js'; export declare function getContractsData(database: IndexDatabase): { contracts: Array<{ id: number; protocol: string; key: string; normalizedKey: string; description: string | null; participants: Array<{ id: number; definitionId: number; definitionName: string; moduleId: number | null; modulePath: string | null; role: string; }>; matched: boolean; }>; stats: { total: number; matched: number; unmatched: number; byProtocol: Record; }; }; //# sourceMappingURL=contract-transforms.d.ts.map