import React from 'react'; import { StyleProp, ViewStyle } from 'react-native-web'; export type PressableProps = { children: React.ReactNode; disabled?: boolean; onPress?: () => void; testID?: string; style?: StyleProp; }; declare const Pressable: ({ children, disabled, onPress, style, testID, }: PressableProps) => React.JSX.Element; export default Pressable;