import * as ReactNative from 'react-native'; import { NamableConstructor } from './util'; type TouchableComponentConstructor = NamableConstructor & typeof ReactNative.TouchableOpacity; /** * **Do not use directly.** * * This method is used by the instrumentor to capture Touchable press and longPress events. * * @param TouchableComponent A `Touchable` class, not wrapped in a `forwardedRef`. * @returns An instrumented HOC wrapping `TouchableComponent`. */ export declare const withHeapTouchableAutocapture: (TouchableComponent: TouchableComponentConstructor) => TouchableComponentConstructor; export {};