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



/**
 * An iterator over the locale under fallback.
 *
 * See the [Rust documentation for `LocaleFallbackIterator`](https://docs.rs/icu/2.1.1/icu/locale/fallback/struct.LocaleFallbackIterator.html) for more information.
 */
export class LocaleFallbackIterator {
    /** @internal */
    get ffiValue(): pointer;
    /** @internal */
    constructor();


    next(): IteratorResult<Locale>;
}