/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type PageProps = { withMenu?: boolean; } & PropsWithChildren>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-page--docs Page docs at Amsterdam Design System} */ export declare const Page: import("react").ForwardRefExoticComponent<{ withMenu?: boolean; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;