export interface FlowViolation { readonly rule: string; readonly file: string; readonly line: number; readonly message: string; } export interface FlowCheckResult { readonly violations: readonly FlowViolation[]; readonly scanned: number; } /** Validates every `@flow_step` annotation in `sourceFiles` (paths relative to `cwd`). */ export declare function checkFlowAnnotations(cwd: string, sourceFiles: readonly string[]): FlowCheckResult; //# sourceMappingURL=flow-check.d.ts.map