UNPKG

@redocly/theme

Version:

Shared UI components lib

8 lines (7 loc) 317 B
import type { ComponentProps, ReactElement } from 'react'; import { Link } from '../../../components/Link/Link'; type MarkdownLinkProps = Omit<ComponentProps<typeof Link>, 'to' | 'onClick'> & { href: string; }; export declare function MarkdownLink({ href, ...props }: MarkdownLinkProps): ReactElement; export {};