import * as React from 'react'; import type { PropsWithChildren } from 'react'; import { TouchableOpacityProps as RNTouchableOpacityProps } from 'react-native'; import { UsePressable } from '../hooks/usePressable'; export declare type TouchableOpacityProps = PropsWithChildren>; export declare const TouchableOpacity: React.MemoExoticComponent<({ children, ...rest }: TouchableOpacityProps) => JSX.Element>;