/** * CNS Class */ export declare class CNS { /** * * This method is used to check if CNS is set on a specified prodcut. * * ```js * await CNS.checkIfActive("iSource"); * ``` * * @param {string} productName */ static checkIfCNSActive(productName: string): Promise; /** * Method is use to click on dismiss button of CNS notification */ static dismissNotification(): Promise; }