import React from "react"; import { PressableProps } from "react-native"; /** * Pressable still captures events if it is disabled. This is a simple helper component that acts as a better disabled pressable, * if you want press events to fall through. */ export declare const DisabledPressable: (props: PressableProps) => React.JSX.Element;