import { NavLinkProps } from '@mantine/core'; import { ComponentPropsWithoutRef, ForwardRefExoticComponent, RefAttributes } from 'react'; export interface NavigationLinkProps extends Omit, Omit, keyof NavLinkProps> { truncateLabel?: boolean; } export declare const NavigationLink: ForwardRefExoticComponent>;