import type { IconName } from "@nulogy/icons"; import type React from "react"; import type { ComponentProps } from "react"; import { TileLink } from "../TopBar.styled"; export interface MenuItemLinkProps extends ComponentProps { as?: React.ElementType; to?: string; title: string; description?: string; icon: IconName; } export declare function MenuItemLink({ description, title, icon, ...props }: MenuItemLinkProps): import("react/jsx-runtime").JSX.Element;