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