import * as React from 'react'; import { Animated, type GestureResponderEvent, type PressableProps, type StyleProp, type ViewStyle } from 'react-native'; type HoverEffectProps = { color?: string; hoverOpacity?: number; activeOpacity?: number; }; export type Props = Omit & { href?: string; pressColor?: string; pressOpacity?: number; hoverEffect?: HoverEffectProps; style?: Animated.WithAnimatedValue>; onPress?: (e: React.MouseEvent | GestureResponderEvent) => void; children: React.ReactNode; }; export declare const PlatformPressable: React.ForwardRefExoticComponent & { href?: string; pressColor?: string; pressOpacity?: number; hoverEffect?: HoverEffectProps; style?: Animated.WithAnimatedValue>; onPress?: (e: React.MouseEvent | GestureResponderEvent) => void; children: React.ReactNode; } & React.RefAttributes>>; export {}; //# sourceMappingURL=PlatformPressable.d.ts.map