import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; declare type Props = { style?: StyleProp; children?: React.ReactNode; }; declare const FlexColumnCenterContainer: ({ style, children, }: Props) => JSX.Element; export default FlexColumnCenterContainer;