/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type PageProps = { /** * Whether the page contains a Menu component. * This requires the following class names on the appropriate children: * - `ams-page__area--skip-link` * - `ams-page__area--header` * - `ams-page__area--menu` * - `ams-page__area--body` * - `ams-page__area--footer` */ readonly withMenu?: boolean; } & Readonly>>; /** * Contains the entire website. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-page--docs Page docs at Amsterdam Design System} */ export declare const Page: import("react").ForwardRefExoticComponent<{ /** * Whether the page contains a Menu component. * This requires the following class names on the appropriate children: * - `ams-page__area--skip-link` * - `ams-page__area--header` * - `ams-page__area--menu` * - `ams-page__area--body` * - `ams-page__area--footer` */ readonly withMenu?: boolean; } & Readonly>> & import("react").RefAttributes>;