import React from 'react'; import { ComponentProps } from '../../utils/types'; interface MarkdownLinkPropsBase { children?: React.ReactNode; href?: string; title?: string; } type MarkdownLinkProps = ComponentProps; declare function MarkdownLink({ children, href, ...otherProps }: MarkdownLinkProps): React.JSX.Element; export default MarkdownLink;