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



/**
 * Additional information: [1](https://docs.rs/icu/2.1.1/icu/calendar/enum.ParseError.html), [2](https://docs.rs/icu/2.1.1/icu/time/enum.ParseError.html)
 */
export class Rfc9557ParseError {

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

    get value(): string;

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

    static Unknown : Rfc9557ParseError;
    static InvalidSyntax : Rfc9557ParseError;
    static OutOfRange : Rfc9557ParseError;
    static MissingFields : Rfc9557ParseError;
    static UnknownCalendar : Rfc9557ParseError;


    constructor(value: Rfc9557ParseError | string );
}