import { QlikSaaSClient } from "qlik-rest-api";
import { Notification } from "./Notification";
export declare class Notifications {
#private;
constructor(saasClient: QlikSaaSClient);
getAll(arg?: {
locale?: string;
subscribable?: "true" | "false";
}): Promise<Notification[]>;
}