import { JSX } from 'react'; export interface MenuLinkProps extends React.HTMLAttributes { href: string; children: React.ReactNode; target?: string; disabled?: boolean; iconLeft?: string; iconRight?: string; className?: string; } export declare const MenuLink: ({ href, children, target, disabled, iconLeft, iconRight, className, ...props }: MenuLinkProps) => JSX.Element; //# sourceMappingURL=menu-link.d.ts.map