import BaseComponent from "../Counter/BaseComponent";
declare class DivElement extends BaseComponent {
    private _value;
    [key: string]: any;
    constructor();
    static get observedAttributes(): string[];
    attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
    connectedCallback(): void;
    get value(): string | null;
    set value(newValue: string | null);
    private render;
    dispatchCustomEvent(eventName: string, detail: any): void;
}
export default DivElement;
