import { type ReportFormat } from "shipcheck-cli/dist/src/format.js"; import { type ScanReport, type Severity } from "shipcheck-cli/dist/src/index.js"; export type ScanRepositoryInput = { root?: string; format?: ReportFormat; failOn?: Severity; strict?: boolean; }; export type ScanRepositoryOutput = { report: ScanReport; formatted: string; }; export declare function runShipcheck(input: ScanRepositoryInput): Promise;