/** * Workflow execution modeler (v4.7). * * Models GitHub Actions workflows as executable chains, tracking * secret access, action usage, and data flow paths. */ import type { Finding } from "./types.js"; /** * Model workflows in a directory and find risky execution paths. */ export declare function modelWorkflows(dir: string): Finding[]; //# sourceMappingURL=workflow-modeler.d.ts.map