/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { AnchorHTMLAttributes, ElementType, PropsWithChildren } from 'react'; export type PageFooterMenuLinkProps = { /** * The React component or intrinsic element to use for the link. * Refs are forwarded only to a plain anchor (the default, or `linkComponent="a"`), not to any other `linkComponent`. */ readonly linkComponent?: ElementType; } & PropsWithChildren>; /** * A link within the Page Footer menu. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-page-footer--docs Page Footer docs at Amsterdam Design System} */ export declare const PageFooterMenuLink: import("react").ForwardRefExoticComponent<{ /** * The React component or intrinsic element to use for the link. * Refs are forwarded only to a plain anchor (the default, or `linkComponent="a"`), not to any other `linkComponent`. */ readonly linkComponent?: ElementType; } & AnchorHTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;