import { type INotificationsQuery, type INotificationsQueryResult } from "@gooddata/sdk-backend-spi"; import { type INotification } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../types/index.js"; export declare class NotificationsQuery implements INotificationsQuery { readonly authCall: TigerAuthenticatedCallGuard; private size; private page; private workspaceId?; private totalCount; private status; constructor(authCall: TigerAuthenticatedCallGuard); private setTotalCount; withSize(size: number): INotificationsQuery; withPage(page: number): INotificationsQuery; withWorkspace(workspaceId: string): INotificationsQuery; withStatus(status: "read" | "unread"): INotificationsQuery; query(): Promise; queryAll(): Promise; } //# sourceMappingURL=notificationsQuery.d.ts.map