import { TextStyle } from 'react-native'; import { ComponentProps, ComponentDriverOptions } from '../../testkit/new/Component.driver'; export declare const TextDriver: (props: ComponentProps, options?: ComponentDriverOptions) => { getText: () => string | (string | import("react-test-renderer").ReactTestInstance)[]; getStyle: () => TextStyle; press: () => void; hasOnPress: () => boolean; onPressIn: () => void; hasOnPressIn: () => boolean; onPressOut: () => void; hasOnPressOut: () => boolean; onLongPress: () => void; hasOnLongPress: () => boolean; getElement: () => import("react-test-renderer").ReactTestInstance; queryElement: () => import("react-test-renderer").ReactTestInstance | undefined; exists: () => boolean; };