import * as React from 'react'; import { type ViewProps, type FlexStyle } from 'react-native'; type Props = { flex?: number; alignItems?: FlexStyle['alignItems']; justifyContent?: FlexStyle['justifyContent']; } & ViewProps; /** * Flex * - A View Component with default style being flex:1 */ export declare const Flex: React.FC; export {}; //# sourceMappingURL=Flex.d.ts.map