import type { CSSProperties, ReactNode } from 'react'; import { type LinkProps } from './link'; export type NavLinkRenderProps = { isActive: boolean; }; export interface NavLinkProps extends Omit { children?: ReactNode | ((props: NavLinkRenderProps) => ReactNode); className?: string | ((props: NavLinkRenderProps) => string | undefined); style?: CSSProperties | ((props: NavLinkRenderProps) => CSSProperties | undefined); } export declare function NavLink({ 'aria-current': ariaCurrentProp, children, className: classNameProp, to, style: styleProp, ...props }: NavLinkProps): ReactNode; //# sourceMappingURL=nav-link.d.ts.map