UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

14 lines (13 loc) 493 B
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 {};