import { JsNode } from './js-node'; import type { LocationInfo } from './node'; import type { Context } from '../context'; import { OutputCollector } from '../output'; /** * @import { foo } from './something.js'; * * @todo - for alpha, we just store the raw string * Later, we should collect identifiers */ export declare class JsImport extends JsNode { value: string; toCSS(context: Context, out: OutputCollector): void; toModule(context: Context, out: OutputCollector): void; } export declare const jsimport: (value: string, location?: LocationInfo) => JsImport;