/** * Created by nghinv on Tue Mar 23 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import { ViewStyle, StyleProp, ViewProps } from 'react-native'; export interface SpaceProps extends ViewProps { style?: StyleProp; flex?: number; children?: React.ReactNode; } declare function Space(props: SpaceProps): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;