/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; import type { HeadingProps } from '../Heading'; export type PageFooterMenuProps = { /** * Describes the menu for users of assistive technology. * The heading gets visually hidden – sighted users can infer the meaning of the menu from its appearance. * @default Over deze website */ readonly heading?: string; /** * The hierarchical level of the Heading within the document. * The default value is 2. This will almost always be correct – but verify this yourself. */ readonly headingLevel?: HeadingProps['level']; } & Readonly>>; /** * The link menu within a Page Footer, with a visually hidden heading for screen readers. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-page-footer--docs Page Footer docs at Amsterdam Design System} */ export declare const PageFooterMenu: import("react").ForwardRefExoticComponent<{ /** * Describes the menu for users of assistive technology. * The heading gets visually hidden – sighted users can infer the meaning of the menu from its appearance. * @default Over deze website */ readonly heading?: string; /** * The hierarchical level of the Heading within the document. * The default value is 2. This will almost always be correct – but verify this yourself. */ readonly headingLevel?: HeadingProps["level"]; } & Readonly>> & import("react").RefAttributes>;