import type Database from 'better-sqlite3'; import type { AuditReport, AuditOptions } from './audit-checks/types'; import { ALL_CHECK_NAMES } from './audit-checks/types'; import { FixEngine } from './audit-checks/fix-engine'; /** * Run a full audit with the given options. * * @param db - Database connection * @param opts - Audit options (checks, sprintId, fix, fixDryRun) * @returns AuditReport with results and exit code * @throws AuditUnknownCheckError if unknown check name * @throws AuditSprintNotFoundError if sprint not found */ export declare function runAudit(db: Database.Database, opts: AuditOptions): AuditReport; export { ALL_CHECK_NAMES, FixEngine }; //# sourceMappingURL=audit-check-service.d.ts.map