import { LinkProps as MuiLinkProps } from "@material-ui/core/Link"; import { LinkProps as NextLinkProps } from "next/link"; import * as React from "react"; declare type NextComposedProps = Omit, "href"> & NextLinkProps; interface LinkPropsBase { activeClassName?: string; innerRef?: React.Ref; naked?: boolean; } export declare type LinkProps = LinkPropsBase & NextComposedProps & Omit; declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>; export default _default; //# sourceMappingURL=Link.d.ts.map