import React from 'react'; import type { PressableProps } from 'react-native'; declare function Pressable(StyledPressable: React.ComponentType): React.ForwardRefExoticComponent & { tabIndex?: 0 | -1; } & { children?: (({ hovered, pressed, focused, focusVisible, disabled, }: { hovered?: boolean; pressed?: boolean; focused?: boolean; focusVisible?: boolean; disabled?: boolean; }) => React.ReactNode) | React.ReactNode; } & React.RefAttributes>; export default Pressable; //# sourceMappingURL=Pressable.d.ts.map