import type { RunRecord, WorkflowDef } from './types.js'; export declare class WorkflowStoreError extends Error { readonly cause?: unknown; constructor(message: string, cause?: unknown); } export declare function readWorkflow(filePath: string): Promise; export declare function writeRunRecord(record: RunRecord): Promise; export declare function listRuns(workflowId?: string): Promise; export declare function saveSession(session: { id: string; platform: string; username: string; cookies: string; userAgent?: string; }): Promise; export declare function listSessions(): Promise>; export declare function deleteSession(id: string): Promise; export declare function getSessionCookies(platform: string, username: string): Promise; //# sourceMappingURL=store.d.ts.map