import { SxProps, Theme } from '@mui/material';
import { FunctionComponent } from 'react';
import { StyledLinkProps } from './StyledLink.js';

interface LinkProps {
    children: React.ReactNode;
    href?: string;
    target?: string;
    onClick?: StyledLinkProps['onClick'];
    disabled?: boolean;
    sx?: SxProps<Theme>;
    underline?: 'none' | 'hover' | 'always' | undefined;
    noWrap?: boolean;
    component?: any;
    rel?: any;
    title?: string;
}
declare const Link: FunctionComponent<LinkProps>;

export { Link as default };
export type { LinkProps };
