// generated by diplomat-tool import type { DataProvider } from "./DataProvider" import type { DateTimeFormatterLoadError } from "./DateTimeFormatterLoadError" import type { DateTimeLength } from "./DateTimeLength" import type { IsoDate } from "./IsoDate" import type { IsoDateTime } from "./IsoDateTime" import type { Locale } from "./Locale" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** An ICU4X TypedDateFormatter object capable of formatting a [`IsoDateTime`] as a string, *using the Gregorian Calendar. * *See the [Rust documentation for `datetime`](https://docs.rs/icu/latest/icu/datetime/index.html) for more information. */ export class GregorianDateFormatter { get ffiValue(): pointer; static createWithLength(provider: DataProvider, locale: Locale, length: DateTimeLength): GregorianDateFormatter; formatIsoDate(value: IsoDate): string; formatIsoDatetime(value: IsoDateTime): string; }