import { Node, NodeMap, LocationInfo } from './node'; import type { Context } from '../context'; import type { OutputCollector } from '../output'; /** * The root node. Contains a collection of nodes */ export declare class Root extends Node { value: Node[]; eval(context: Context): this; toCSS(context: Context, out: OutputCollector): void; toModule(context: Context, out: OutputCollector): void; } export declare const root: (value: Node[] | NodeMap, location?: LocationInfo) => Root;