export declare enum Ternary {
    Always = "always",
    Maybe = "maybe",
    Never = "never"
}
export declare const TernaryLogic: {
    name: string;
    negate(this: void, value: Ternary): Ternary;
    or(this: void, ...values: Ternary[]): Ternary;
    and(this: void, ...values: Ternary[]): Ternary;
};
