react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
14 lines (13 loc) • 493 B
TypeScript
import { RadioGroupProps } from './index';
import { ComponentDriver, ComponentDriverArgs } from '../../testkit/Component.driver';
type RadioGroupDriverArgs = ComponentDriverArgs & {
testIDs: {
[key: string]: string;
};
};
export declare class RadioGroupDriver extends ComponentDriver<RadioGroupProps> {
private readonly radioButtonDrivers;
constructor(radioGroupDriverArgs: RadioGroupDriverArgs);
pressOn: (radioButtonTestId: string) => Promise<void>;
}
export {};