/** Enum representing valid unary operators. */ export declare enum UnaryOperator { /** Logical NOT operator (!) */ Not = 0, /** Double NOT operator ( !! ) used for type coercion */ NotNot = 1 }