import { VariableManager } from './variable-manager'; /** * Parses and executes a Yarn variable operation command * Supports: * - <> (assignment) * - <> (addition) * - <> (subtraction) * - <> (multiplication) * - <> (division) */ export declare function executeVariableOperation(command: string, variableManager: VariableManager): void; /** * Extracts and executes all variable operations from a node's content * This processes any <> commands embedded in the dialogue text */ export declare function processVariableOperationsInContent(content: string, variableManager: VariableManager): string;