import PropTypes from 'prop-types'; import React from 'react'; import { JustifyContent } from './types'; export interface BottomSectionProps { justifyContent?: JustifyContent; spacing?: string | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7; children?: React.ReactNode; } declare const BottomSection: { (props: BottomSectionProps): React.ReactElement | null; defaultProps: { justifyContent: string; spacing: number; }; propTypes: { justifyContent: PropTypes.Requireable; spacing: PropTypes.Requireable; children: PropTypes.Requireable; }; displayName: string; }; export default BottomSection;