import * as React from 'react'; import { BoxExtendedProps } from '../Box/index'; import { BackgroundObject } from '../../utils'; type PageBackground = BackgroundObject & { fill?: 'horizontal'; }; export interface PageContentProps { background?: string | PageBackground; } export interface PageContentExtendedProps extends PageContentProps, Omit {} declare const PageContent: React.FC; export { PageContent };