import type { ImportDeclaration } from 'estree'; export declare class ImportManager { #private; /** Add an import to a collection of imports, probably for adding to the AST later. */ add(imports: string | string[] | Record, source?: string): void; /** Get the collection of imports for adding to the AST, probably soon! */ getImportDeclarations(): ImportDeclaration[]; } //# sourceMappingURL=imports.d.ts.map