/** * Footer class */ export declare class Footer { /** * This function is used to click on Button which is in footer * * ```js * Footer.clickButton("Submit"); * ``` * * @param {String} btnName Button Label */ static clickButton(btnName: string): Promise; /** * This function is used to click on Button which is in footer inside a modal popup * * ```js * Footer.clickModalFooterButton("Submit"); * ``` * * @param {String} btnName Button Label */ static clickModalFooterButton(btnName: string): Promise; }