/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { jsx } from '@emotion/react';
import type { PageProps } from './types';
/**
 * __Page__
 *
 * Used to build page layouts.
 *
 * Has built in support for positioning [banners](https://atlassian.design/components/banner/examples)
 * and the deprecated `@atlaskit/navigation`.
 *
 * - [Examples](https://atlaskit.atlassian.com/packages/design-system/page)
 */
declare const Page: ({ isBannerOpen, bannerHeight, banner, navigation, children, testId, }: PageProps) => jsx.JSX.Element;
export default Page;
