import { CustomEISElements } from ".."; import { Element, UIElement } from "../generic"; export declare class GenericChilds> { readonly childs: Set; element: UIElement; constructor(x: UIElement, childs: T[]); forEach(callback: (child: T) => void): void; destroyChilds(checker: (child: CustomEISElements) => boolean): void; filterChilds(checker: (child: T) => boolean): Set; add(child: T): void; remove(child: T): void; }