import type { Node } from './ts-morph.ts'; /** Gets the description and tags from a JSDoc comment for a node. */ export declare function getJsDocMetadata(node: Node): { description?: string; tags?: { name: string; text?: string; }[]; } | undefined;