/** * Meta extractor - extracts file metadata */ import type { Tree } from 'web-tree-sitter'; import type { Meta } from '../../types/index.js'; import type { SupportedLanguage } from '../parser.js'; /** * Extract metadata from source code. */ export declare function extractMeta(code: string, tree: Tree, filePath: string, language: SupportedLanguage): Meta; //# sourceMappingURL=meta.d.ts.map