import BaseComponent from "../Counter/BaseComponent";
export default class CustomNode extends BaseComponent {
    private container;
    private props;
    constructor();
    static get observedAttributes(): string[];
    connectedCallback(): void;
    attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
    addNode(): void;
}
export { CustomNode };
