import { PureComponent } from 'react'; import PropTypes from 'prop-types'; export default class ContainerWithGap extends PureComponent { static propTypes: { containerStyle: PropTypes.Requireable; horizontal: PropTypes.Requireable; gap: PropTypes.Requireable; outerGap: PropTypes.Requireable; }; static defaultProps: { containerStyle: {}; horizontal: boolean; gap: number; outerGap: number; }; getContents(): any; render(): JSX.Element | null; }