import type { ElementNode } from './ElementNode'; export declare const VARIABLE_NODE_TYPE = "variable"; export interface VariableNode extends ElementNode { type: typeof VARIABLE_NODE_TYPE; fallback?: string; key: string; } export declare function isVariableNode(value: any): value is VariableNode;