import type { Localization, TranslationOptions } from "@itwin/core-common"; /** * Entry point for static initialization required by various components used in the package. * @public */ export declare class TreeWidget { #private; /** * Called by IModelApp to initialize the Tree Widget * @param i18n - The internationalization service created by the IModelApp. */ static initialize(i18n?: Localization): Promise; /** Unregisters the TreeWidget internationalization service namespace */ static terminate(): void; /** The internationalization service created by the IModelApp. */ static get i18n(): Localization; /** The internationalization service namespace. */ static get i18nNamespace(): string; /** Calls i18n.translateWithNamespace with the "TreeWidget" namespace. Do NOT include the namespace in the key. */ static translate(key: string | string[], options?: TranslationOptions): string; } //# sourceMappingURL=TreeWidget.d.ts.map