export declare class BasePage {
    mainObjectXpath: string | undefined;
    constructor(mainObjectXpath?: string);
    navigateToUrl(url: string): Promise<void>;
    clickOnCheckbox(checkboxLabel: string): Promise<void>;
    getCheckBox(label: string): Promise<WebdriverIO.Element | undefined>;
    getCheckboxStatus(checkboxLabel: string): Promise<string>;
    deleteFolderContent(folderPath: string): Promise<void>;
    getConsoleErrors(): string[] | undefined;
}
//# sourceMappingURL=base-page.d.ts.map