/** Enum representing valid ternary operators. */
export declare enum TernaryOperator {
    /** The standard conditional (ternary) operator. */
    Question = "?:",
    /** Indicates an unknown or invalid ternary operator. */
    Unknown = "xx"
}
