import { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import { Link, LinkProps } from 'react-router-dom'; export declare type LinkComponentProps = Omit; /** * Create a link component to be used by material-ui, especially in menus. * * @param target - The link target. * @returns The linked component. */ export declare function createLinkComponent(target: string): ForwardRefExoticComponent & RefAttributes>;