import type { AutomationId, RunId } from "@vendoai/core"; import { type VendoStore } from "../store.js"; import type { RunRow } from "./types.js"; /** 02-store ยง3 */ export declare function runStore(store: VendoStore): { put(run: RunRow): Promise; get(id: RunId): Promise; list(filter: { automationId?: AutomationId; status?: RunRow["status"]; limit?: number; cursor?: string; }): Promise<{ runs: RunRow[]; cursor?: string; }>; }; export { RUN_ROW_STATUSES, type RunRow, type RunRowStatus } from "./types.js"; //# sourceMappingURL=runs.d.ts.map