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.Element; export default Page;