import { Node, NodeMap, LocationInfo } from './node'; import type { Context } from '../context'; import type { OutputCollector } from '../output'; /** * An expression in parenthesis */ export declare class Paren extends Node { value: Node; toCSS(context: Context, out: OutputCollector): void; toModule(context: Context, out: OutputCollector): void; } export declare const paren: (value: Node | NodeMap, location?: LocationInfo) => Paren;