import { ClassDeclaration, FunctionDeclaration, VariableDeclaration, VariableDeclarator, ExportAllDeclaration, ExportDefaultDeclaration, ExportNamedDeclaration, ImportDeclaration } from './types'; export declare function scanDeclarations(source: string): Promise<{ binding: Map; topLevelDeclarations: Array; exportDeclarations: Array; importDeclarations: ImportDeclaration[]; }>;