import type * as React from 'react'; import type { Animated, PressableProps as PressableNativeProps, StyleProp, View, ViewStyle } from 'react-native'; export type PressableStateCallbackType = { hovered: boolean; pressed: boolean; focused: boolean; }; export type PressableProps = Omit & { children: React.ReactNode | ((state: PressableStateCallbackType) => React.ReactNode) | undefined; style?: StyleProp | Animated.WithAnimatedValue> | ((state: PressableStateCallbackType) => StyleProp | Animated.WithAnimatedValue>) | undefined; }; export declare const Pressable: React.ForwardRefExoticComponent>; //# sourceMappingURL=Pressable.d.ts.map