import type { CustomElementConstructor } from "../api/dom.ts"; /** A mixin to provide children observation support to a custom element. */ export declare const ChildrenChangedMixin: (Element: T) => T & ChildrenChangedMixin.Constructor; export declare namespace ChildrenChangedMixin { interface Constructor extends CustomElementConstructor { } interface Mixin { childrenChangedCallback?(): void; } }