import * as React from 'react'; import '@vtmn/css-navbar/dist/index-with-vars.css'; import { VitamixId } from '@vtmn/icons/dist/vitamix/font/vitamix'; export interface VtmnNavbarLinkProps extends React.ComponentPropsWithoutRef<'a'> { /** * Icon of the navbar link. * @type {VitamixId} * @defaultValue undefined */ icon: VitamixId; /** * The badge to render on top of the navbar link. * @defaultValue undefined */ children?: React.ReactNode; } export declare const VtmnNavbarLink: ({ icon, className, children, ...props }: VtmnNavbarLinkProps) => JSX.Element; declare const MemoVtmnNavbarLink: React.MemoExoticComponent<({ icon, className, children, ...props }: VtmnNavbarLinkProps) => JSX.Element>; export default MemoVtmnNavbarLink;