///
import { ViewProps as RNViewProps } from 'react-native';
import { BoxProps } from '../Box';
export declare type LocalFlexProps = {};
export declare type FlexProps = BoxProps & RNViewProps & LocalFlexProps;
export declare const Flex: 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;
};