/** * Declaration extraction from AST nodes. * Contains functions for processing declarations, members, and statements. */ import type { TSESTree } from '@typescript-eslint/typescript-estree'; import type { AnalyzableNode } from '../types'; /** * Processes a statement (export, declaration, etc.). */ export declare function processStatement(source: string, statement: TSESTree.Statement | TSESTree.ProgramStatement, parentPath: string | undefined, extractMetadataOpt: boolean, outputMap: Map): void; //# sourceMappingURL=declaration-extraction.d.ts.map