import { Browser, By, WebElement } from "../selenium";
import { UIComponent } from "./ui-component";
export declare class Spreadsheet extends UIComponent {
    protected parentElement?: WebElement | By | string;
    static SELECTOR: string;
    static UNDO: By;
    static REDO: By;
    static FONT: By;
    static FONT_SIZE: By;
    static INCREASE_SIZE: By;
    static DECREASE_SIZE: By;
    static BOLD: string;
    static ITALIC: By;
    static UNDERLINE: By;
    constructor(browser: Browser, locator?: string, parentElement?: WebElement | By | string);
    cells(): Promise<WebElement[]>;
    cellByIndex(index: number): Promise<WebElement>;
    getToolByTitle(title: string): Promise<WebElement>;
}
