import React from 'react'; import { type LinkDefaultElement, type LinkProps } from '../typography/Link'; export type NavLinkProps = { /** Boolean to indicate if the Link represents the current route. */ active?: boolean; } & Omit, 'color'>; export declare const NavLink: React.MemoExoticComponent< ({ active, className: customClassName, ...props }: NavLinkProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=NavLink.d.ts.map