import React from 'react'; import { LinkProps as MuiLinkProps } from '@mui/material/Link'; export interface LinkProps extends MuiLinkProps { primary: string | React.ReactNode; to?: string; } export declare const Link: React.ComponentType;