import { DocumentInlineLink } from '@gitbook/api'; import { InlineProps } from './Inline'; import { Inlines } from './Inlines'; import { Link } from '../primitives'; export async function InlineLink(props: InlineProps) { const { inline, document, context, ancestorInlines } = props; const resolved = await context.resolveContentRef(inline.data.ref); if (!resolved) { return ( ); } return ( ); }