export class ViewGroup {
    /**
     * @private
     * @type {Set<View>}
     */
    private elements;
    /**
     * @private
     * @type {View|null}
     */
    private container;
    /**
     *
     * @param {View} view
     */
    add(view: View): void;
    /**
     *
     * @param {View} view
     */
    remove(view: View): boolean;
    /**
     *
     * @param {View} container
     */
    connect(container: View): void;
    disconnect(): void;
}
//# sourceMappingURL=ViewGroup.d.ts.map