/** * TSDoc and metadata extraction from AST nodes. */ import type { TSESTree } from '@typescript-eslint/typescript-estree'; import type { NodeMetadata } from '../types'; /** * Extracts metadata from TSDoc comments. */ export declare function extractNodeMetadata(source: string, node: TSESTree.Node): NodeMetadata | undefined; //# sourceMappingURL=metadata-extraction.d.ts.map