import { LinkProps as MUILinkProps } from '@mui/material'; import * as React from "react"; /** * Enhanced MUI Link that supports both `href` (external) and `to` (React Router). * Automatically uses `navigate()` for internal routes and preserves browser behavior for Ctrl/Meta-clicks. */ export interface LinkProps extends MUILinkProps { history?: "auto" | "push" | "replace"; to?: string; component?: React.ElementType; } declare const Link: React.ForwardRefExoticComponent & React.RefAttributes>; export default Link;