import { BaseAttrs, UiBase } from "../web-component-base";
export interface Attrs extends BaseAttrs {
    'i18n-key'?: string;
}
export declare class Ele extends UiBase<Attrs> {
    static readonly tagName: "dt-i18n";
    protected static _style: string;
    protected static _template: string;
    static get observedAttributes(): string[];
    protected _onAttrChanged(name: string, oldValue: string, newValue: string): void;
    connectedCallback(): void;
    updateText(): void;
}
