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