import { jsx } from '@emotion/react'; import type { SlotWidthProps } from '../../common/types'; /** * __Main__ * * Provides a slot for main content within the PageLayout. * * - [Examples](https://atlassian.design/components/page-layout/examples) * - [Code](https://atlassian.design/components/page-layout/code) * * @deprecated `@atlaskit/page-layout` is deprecated. Use `@atlaskit/navigation-system` instead. */ declare const Main: (props: SlotWidthProps) => jsx.JSX.Element; export default Main;