import type { UnaryOperator } from "../lexer/types.js";
export declare function evaluateUnary(operator: UnaryOperator, operand: unknown): unknown;
