/** @jsx jsx */ import { FC, Ref, ComponentType } from 'react'; import { BoxProps } from 'theme-ui'; export interface PageContainerOwnProps { /** * ref to the page container component */ ref?: Ref; /** * theme variant */ variant?: string; /** * inner wrapper container */ wrapper?: ComponentType | null; } export declare type PageContainerProps = PageContainerOwnProps & Omit; /** * Page container component * If the page is an MDX page, will display the MDX components. * Otherwise, the page elements are passed as children */ export declare const PageContainer: FC;