// generated by diplomat-tool
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";



/**
 * See the [Rust documentation for `TimeZoneVariant`](https://docs.rs/icu/2.1.1/icu/time/zone/enum.TimeZoneVariant.html) for more information.
 *
 * @deprecated type not needed anymore
 */
export class TimeZoneVariant {

    /** @internal */
    static fromValue(value: TimeZoneVariant | string): TimeZoneVariant;

    get value(): string;

    /** @internal */
    get ffiValue(): number;

    static Standard : TimeZoneVariant;
    static Daylight : TimeZoneVariant;


    /**
     * See the [Rust documentation for `from_rearguard_isdst`](https://docs.rs/icu/2.1.1/icu/time/zone/enum.TimeZoneVariant.html#method.from_rearguard_isdst) for more information.
     *
     * See the [Rust documentation for `with_variant`](https://docs.rs/icu/2.1.1/icu/time/struct.TimeZoneInfo.html#method.with_variant) for more information.
     *
     * @deprecated type not needed anymore
     */
    static fromRearguardIsdst(isdst: boolean): TimeZoneVariant;

    constructor(value: TimeZoneVariant | string );
}