import type { ImportDeclaration } from 'estree'; /** * Creates an import statement, e.g. `import { foo, bar as $bar$ } from "pkg"` * @param imports names to be imported; values can be a string (plain import) or object (aliased) * @param source source location to import from; defaults to @lwc/ssr-runtime */ export declare const bImportDeclaration: (imports: string | string[] | Record, source?: string) => ImportDeclaration; //# sourceMappingURL=builders.d.ts.map