import React from "react"; import { TitleProps } from "../Title"; import { IconBaseProps } from "react-icons"; type MenuLinkProps = React.HTMLAttributes & { active?: boolean; href: string; headerContainerProps?: React.HTMLAttributes; headerTitleProps?: TitleProps; arrowNarrowRightProps?: IconBaseProps; headerActiveSideProps?: React.HTMLAttributes; }; export default function MenuLink({ active, href, children, headerContainerProps, headerTitleProps, arrowNarrowRightProps, headerActiveSideProps, ...props }: MenuLinkProps): React.JSX.Element; export {};