/// import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { WhiteSpacePropsType } from './PropsType'; export interface WhiteSpaceProps extends WhiteSpacePropsType { style?: StyleProp; } declare class WhiteSpace extends React.Component { static defaultProps: { size: string; }; render(): JSX.Element; } export default WhiteSpace;