import { Node, LocationInfo } from './node'; import type { Context } from '../context'; import type { OutputCollector } from '../output'; /** * A generic value that needs to * be escaped for module output */ export declare class Anonymous extends Node { value: string; toModule(context: Context, out: OutputCollector): void; } export declare const anon: (value: string, location?: LocationInfo) => Anonymous;