import { RadioElementProfile } from '../../elements'; import { O3rElement, PlaywrightSourceElement } from '../element'; /** * Implementation dedicated to Playwright. */ export declare class O3rRadioElement extends O3rElement implements RadioElementProfile { constructor(sourceElement: PlaywrightSourceElement | O3rElement); /** @inheritDoc */ check(value?: boolean): Promise; /** @inheritDoc */ uncheck(): Promise; /** @inheritDoc */ isChecked(): Promise; } //# sourceMappingURL=radio-element.d.ts.map