import { Fragment } from 'react';
import Link from '@docusaurus/Link';
import { useRequiredReflection } from '../hooks/useReflection';
import type { TSDDeclarationReflection } from '../types';
import { escapeMdx } from '../utils/helpers';
import { AnchorLink } from './AnchorLink';
import { Icon } from './Icon';
export interface IndexChildProps {
id: number;
}
function IndexChild({ id }: IndexChildProps) {
const reflection = useRequiredReflection(id);
return (