/** * Dew Checkbox class */ export declare class DewCheckbox { /** * To select all checkboxes in a checkbox collection * * ```js * * DewCheckbox.selectAll() * ``` * * * */ static selectAll(): Promise; /** * To select a particular checkbox * * ```js * * DewCheckbox.selectCheckbox("Active") * ``` * * @param {String}checkboxName * */ static selectCheckbox(checkboxName: string): Promise; /** *  To select a row with checkbox as first column * * ```js * * DewCheckbox.selectCheckboxInRow() * ``` * * */ static selectCheckboxInRow(): Promise; /** *  To select checkbox at header level in grid * * ```js * * DewCheckbox.selectAllCheckboxInGrid() * ``` * * */ static selectAllCheckboxInGrid(): Promise; }