/// import { JSDocNode } from "../core/JSDocNode"; import { NodeProps } from "./NodeProps"; /** * Render JSDoc as markdown. * * @remarks * This component first converts the {@link JSDocNode}s to a markdown string. * The nodes which can't be converted directly to text are converted to a * `js-doc` element instead so that they can be replaced again with the * original nodes once the markdown is rendered. This two step process allows * the rendering of markdown which has other {@link JSDocNode} elements * throughout it. * * @group Components */ export declare function JSDocMarkdown({ collection, node, }: NodeProps): JSX.Element; //# sourceMappingURL=JSDocMarkdown.d.ts.map