import type { IOutputCtl } from './OutputCtl.ts'; import type { NormalizedAssemblyResults } from './resultFiles.ts'; export interface ResultUrlRow { assemblyId: string; name: string; step: string; url: string; } export declare function collectResultUrlRows({ assemblyId, results, }: { assemblyId: string; results: unknown; }): ResultUrlRow[]; export declare function collectNormalizedResultUrlRows({ assemblyId, normalizedResults, }: { assemblyId: string; normalizedResults: NormalizedAssemblyResults; }): ResultUrlRow[]; export declare function formatResultUrlRows(rows: readonly ResultUrlRow[]): string; export declare function printResultUrls(output: IOutputCtl, rows: readonly ResultUrlRow[]): void; //# sourceMappingURL=resultUrls.d.ts.map