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



/**
 * An error when formatting a datetime.
 *
 * Currently never returned by any API.
 *
 * Additional information: [1](https://docs.rs/icu/2.1.1/icu/datetime/unchecked/enum.FormattedDateTimeUncheckedError.html)
 */
export class DateTimeWriteError {

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

    get value(): string;

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

    static Unknown : DateTimeWriteError;
    static MissingTimeZoneVariant : DateTimeWriteError;


    constructor(value: DateTimeWriteError | string );
}