/** * End-user notifications — admin surface (in-app inbox reader). * * GET /notifications/in-app/messages?projectId=&userId=&channel=&limit= * * The runtime `send` verb (push / in-app / mobile dispatch) lives in * `@sylphx/sdk` per ADR-083 (BaaS data plane). Push / mobile deliveries * land on the device and are not mirrored in the platform store; this * endpoint returns in-app inbox entries only. */ import type { Client } from './client.js'; export interface InboxEntry { readonly id: string; readonly userId: string | null; readonly title: string | null; readonly body: string | null; readonly channel: string; readonly status: string; readonly createdAt: string; } export interface ListInboxOptions { readonly projectId: string; readonly userId?: string; readonly channel?: string; readonly limit?: number; } export declare const listInbox: (client: Client, options: ListInboxOptions) => Promise<{ notifications: readonly InboxEntry[]; }>; //# sourceMappingURL=notifications.d.ts.map