import { IRadio } from '../interface/controls/radio';
import { PlaywrightHTMLElement } from './html-element';
export declare class PlaywrightRadio extends PlaywrightHTMLElement implements IRadio {
    constructor(cssLocator: string);
    isSelected(): Promise<boolean>;
    select(): Promise<void>;
}
