export = Communication; declare class Communication { constructor(config: any); config: any; /** * @param {CommunicationPlatformValidator.GetSystemNotificationsParam} arg * - Arg object * * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}` * @param {import("../PlatformAPIClient").Options} - Options * @returns {Promise} - * Success response * @name getSystemNotifications * @summary: Get system notifications * @description: Retrieves a list of system notifications. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/communication/getSystemNotifications/). */ getSystemNotifications({ pageNo, pageSize, requestHeaders }?: CommunicationPlatformValidator.GetSystemNotificationsParam, { responseHeaders }?: object): Promise; } import CommunicationPlatformValidator = require("./CommunicationPlatformValidator"); import CommunicationPlatformModel = require("./CommunicationPlatformModel");