import { type RuntimeAuditWorkflowFilter } from '../gha-runtime-audit/scope.mts'; export type ParsedGhaRuntimeAudit = { kind: 'gha-runtime-audit'; repository?: string; branch?: string; workflows: RuntimeAuditWorkflowFilter[]; }; export declare function parseGhaRuntimeAudit(args: readonly string[]): ParsedGhaRuntimeAudit | { kind: 'help'; } | { kind: 'error'; message: string; };