/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { AnchorHTMLAttributes, PropsWithChildren } from 'react';
import type { IconProps } from '../Icon';
export type MenuLinkProps = {
    /** The icon to display for the menu icon. Use the filled variant. */
    icon: IconProps['svg'];
} & PropsWithChildren<AnchorHTMLAttributes<HTMLAnchorElement>>;
export declare const MenuLink: import("react").ForwardRefExoticComponent<{
    /** The icon to display for the menu icon. Use the filled variant. */
    icon: IconProps["svg"];
} & AnchorHTMLAttributes<HTMLAnchorElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLAnchorElement>>;
