import { type LightconeHttp } from "../../http"; import type { Notification } from "./index"; interface ClientContext { http: LightconeHttp; } export declare class Notifications { private readonly client; constructor(client: ClientContext); fetch(): Promise; /** * Same as {@link fetch}, but uses the supplied `cookieHeader` for this call * instead of the SDK's process-wide cookie store. For server-side cookie * forwarding (SSR / route handlers). */ fetchWithCookies(cookieHeader: string): Promise; dismiss(notificationId: string): Promise; } export {}; //# sourceMappingURL=client.d.ts.map