import React, { ReactNode } from 'react';
import { TextProps } from "../../mantine/text";
import { TextSize } from "../../../mantine";
type Props = {
    icon: JSX.Element;
    children: ReactNode;
    isCollapsed: boolean;
    onLinkClick: () => void;
    activeIcon?: JSX.Element;
    isActive?: boolean;
    textSize?: TextSize;
    textType?: TextProps['weight'];
    textColorActive?: string;
    textColor?: string;
};
declare const MenuLink: ({ icon, isActive, children, isCollapsed, activeIcon, onLinkClick, textSize, textType, textColorActive, textColor, }: Props) => React.JSX.Element;
export { MenuLink };
