import React from 'react'; import type { ViewStyle } from 'react-native'; interface TouchableProps { style?: ViewStyle; children?: React.ReactNode; onClick?: () => void; onPress?: () => void; testID?: string; } export declare function Touchable({ style, children, onClick, onPress, testID }: TouchableProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=touchable.d.ts.map