/** * Enum representing binary operators. */ export declare enum AssignmentOperator { Equal = "=", NullCoaleasce = "??=", Unknown = "x" }