import React from 'react';
import type { LinkProps } from '@mui/material/Link';
import { LinkProps as RouterLinkProps, NavLinkProps } from 'react-router-dom';
export declare const RouterLink: React.ForwardRefExoticComponent<RouterLinkProps & React.RefAttributes<HTMLAnchorElement>>;
export declare const NavLink: ({ to, ...props }: NavLinkProps) => JSX.Element;
export declare const Link: ({ href, ...props }: LinkProps) => JSX.Element;
