///
import { TouchableOpacityProps as RNTouchableOpacityProps } from 'react-native';
import { BoxProps } from './Box';
export declare type LocalBoxTouchableProps = {
/** Sets a throttle for the press event (`onPress`) to be only invoked at most once every `x` milliseconds. */
throttle?: boolean | number;
};
export declare type BoxTouchableProps = BoxProps & RNTouchableOpacityProps & LocalBoxTouchableProps;
export declare const BoxTouchable: import("react").ForwardRefExoticComponent & import("react-native").ViewProps & import("./Box").LocalBoxProps & {
active?: boolean;
focus?: boolean;
hover?: boolean;
hoveractive?: boolean;
} & RNTouchableOpacityProps & LocalBoxTouchableProps & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};