import type Database from 'better-sqlite3'; import type { CheckResult } from './types'; /** * Verify every TS (Test Suite) document has at least one outgoing divided_into * relation to a Test Case (TC) document. * Non-fixable — reports missing traceability only. * Severity: error (AD-0047) — a TS without TC is a critical traceability gap. */ export declare function tsToTcCheck(db: Database.Database, sprintId?: string): CheckResult; //# sourceMappingURL=ts-to-tc-check.d.ts.map