import type { UmbControllerHostElement } from '../controller-api/index.js'; import type { UmbLocalizationController } from '../localization-api/index.js'; import type { UmbClassInterface } from '../class-api/index.js'; export interface UmbElement extends UmbClassInterface, UmbControllerHostElement { /** * Use the UmbLocalizationController to localize your element. * @see UmbLocalizationController */ localize: UmbLocalizationController; }