export function isMethodVerb(v: any): boolean; /** Pure work-event context — the caller injects commit/branch/env; the driver passes placeholders. */ export function workContext(flags: any): { runId: string; commit: string; branch: string; env: string; runner: string; at: string; }; /** * Handle a method/recorder verb. Returns the exit code; emits a `WorkEvent` (JSON with `--json`) * or human-readable guidance via `out`. `null` is returned when `verb` is not a method verb. */ export function handleMethodVerb(positionals: any, flags: any, out: any): number | null; /** The recorder verbs handled here (not the `check`/`verify`/`init`/`audit` producers). */ export const METHOD_VERBS: string[]; //# sourceMappingURL=method-verbs.d.ts.map