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