import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; export interface WhiteSpaceProps { style?: StyleProp; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; } declare class WhiteSpace extends React.Component { static defaultProps: { size: string; }; render(): React.JSX.Element; } export default WhiteSpace;