import { ActionPlan, ActionStatus } from "../../../domain/sentinel/action/action-plan.js"; export declare class ActionStore { private readonly store; constructor(workspaceRoot: string); listAll(): Promise; findById(id: string): Promise; findBySignal(signalId: string): Promise; upsert(plan: ActionPlan): Promise<{ readonly created: boolean; readonly plan: ActionPlan; }>; setStatus(id: string, status: ActionStatus, updatedAt: string): Promise; } //# sourceMappingURL=action-store.d.ts.map