/** @packageDocumentation * @module Common */ /** * Manages the localization service for the imodel-components-react package. * @public */ export declare class UiIModelComponents { private static _initialized; /** * initialize UiIModelComponents. */ static initialize(): Promise; /** Unregisters the UiIModelComponents localization namespace */ static terminate(): void; /** Determines if UiIModelComponents has been initialized */ static get initialized(): boolean; /** The internationalization service namespace. */ static get localizationNamespace(): string; /** @internal */ static get packageName(): string; /** Calls localization.getLocalizedString with the "UiIModelComponents" namespace. Do NOT include the namespace in the key. * @internal */ static translate(key: string | string[]): string; /** @internal */ static loggerCategory(name: string): string; } //# sourceMappingURL=UiIModelComponents.d.ts.map