import type { BrowserAutomation, BrowserAutomationRun, BrowserAutomationRunEvent } from './types.js'; export declare const listBrowserAutomations: () => BrowserAutomation[]; export declare const getBrowserAutomation: (id: string) => BrowserAutomation | null; export declare function saveBrowserAutomation(value: BrowserAutomation): void; export declare const deleteBrowserAutomation: (id: string) => boolean; export declare function saveBrowserAutomationRun(value: BrowserAutomationRun): void; export declare const getBrowserAutomationRun: (id: string) => BrowserAutomationRun | null; export declare const listBrowserAutomationRuns: (automationId?: string) => BrowserAutomationRun[]; export declare const listActiveBrowserAutomationRuns: () => BrowserAutomationRun[]; export declare const hasActiveBrowserAutomationRuns: (automationId: string) => boolean; export declare const nextBrowserAutomationRunEventSeq: (runId: string) => number; export declare function appendBrowserAutomationRunEvent(value: BrowserAutomationRunEvent): void; export declare const listBrowserAutomationRunEvents: (runId: string) => BrowserAutomationRunEvent[];