/** * Orchestrator: pulls company facts from ARES, screens against sanctions, * checks insolvency (when ISIR client provided), aggregates into a single * report with explainable risk score. */ import type { DdClients } from './clients.js'; import type { DdReport } from './types.js'; export interface ReportOptions { /** 'basic' = ARES + sanctions only. 'full' = + ISIR + virtual-address probe. */ depth?: 'basic' | 'full'; } export declare function buildReport(ico: string, clients: DdClients, opts?: ReportOptions): Promise; //# sourceMappingURL=report.d.ts.map