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