import type { RunStore } from "../types.ts"; import type { NotifyCtx } from "./context.ts"; /** `/workflow run list` — the recorded runs (spec §6.3). */ export declare function handleListRuns(ctx: NotifyCtx, store: Pick): Promise; /** * `/workflow list` — the workflows this project defines, by name and description. Files that fail to * load are reported separately rather than omitted silently, so a broken workflow is visible. */ export declare function handleListWorkflows(ctx: NotifyCtx & { cwd: string; }): Promise; //# sourceMappingURL=list.d.ts.map