import { ComponentDriver, IInputDriver } from '@atomic-testing/core';
export declare class HTMLRadioButtonGroupDriver extends ComponentDriver<{}> implements IInputDriver<string | null> {
    getValue(): Promise<string | null>;
    setValue(value: string | null): Promise<boolean>;
    get driverName(): string;
}
