import { listInbox, projectInsightsToInbox, recordDecision, recordFeedback, wakeSnoozedItems } from './repository.js'; import type { InboxStatus } from './types.js'; export declare class ProactiveInboxService { list: typeof listInbox; project: typeof projectInsightsToInbox; wakeSnoozed: typeof wakeSnoozedItems; decide: typeof recordDecision; feedback: typeof recordFeedback; instruct(id: string, instruction: string): { revisionId: string; }; transition(id: string, input: { status: InboxStatus; snoozedUntil?: string; resolution?: string; }): import("./types.js").InboxItem; }