import { ICheckBox } from '../interface/controls/check-box';
import { WebDriverHTMLElement } from './html-element';
export declare class WebDriverCheckBox extends WebDriverHTMLElement implements ICheckBox {
    constructor(cssLocator: string);
    isSelected(): Promise<boolean>;
    setValue(value: boolean): Promise<void>;
}
