import React from 'react'; import { type LinkProps as MuiLinkProps } from '@mui/material/Link'; export interface LinkProps extends MuiLinkProps { } declare const Link: React.FC; export default Link;