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