import * as React from "react"; import { FlexStyle, ViewProps } 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