/// import { PressableProps as RNPressableProps } from 'react-native'; import { BoxProps } from '../Box'; export declare type LocalPressableProps = { throttle?: boolean | number; }; export declare type PressableProps = BoxProps & RNPressableProps & LocalPressableProps; export declare const Pressable: import("react").ForwardRefExoticComponent & import("react-native").ViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & RNPressableProps & LocalPressableProps & import("react").RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };