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



/**
 * Additional information: [1](https://docs.rs/icu_provider/2.1.1/icu_provider/struct.DataError.html), [2](https://docs.rs/icu_provider/2.1.1/icu_provider/enum.DataErrorKind.html)
 */
export class DataError {

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

    get value(): string;

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

    static Unknown : DataError;
    static MarkerNotFound : DataError;
    static IdentifierNotFound : DataError;
    static InvalidRequest : DataError;
    static InconsistentData : DataError;
    static Downcast : DataError;
    static Deserialize : DataError;
    static Custom : DataError;
    static Io : DataError;


    constructor(value: DataError | string );
}