export type InboxRecord = { id: string; adapter: string; endpoint_id: string; kind: "message" | "request" | "notice"; payload: unknown; updatedAt: number; }; export declare function idbPutInbox(record: InboxRecord): Promise; export declare function idbListInbox(adapter: string, endpoint_id: string, kind: InboxRecord["kind"]): Promise; export declare function applyConsoleEvent(event: { type: string; data?: unknown; runtimeId?: string; eventId?: number; timestamp?: number; }): Promise; //# sourceMappingURL=idb-store.d.ts.map