import { BaseContainer } from './BaseContainer.js';
import type { Widget } from './Widget.js';
import type { WidgetAutoXML } from '../xml/WidgetAutoXML.js';
/**
 * A {@link BaseContainer} which always propagates events. Use this widget if
 * you are not sure what that means.
 *
 * Can be constrained to a specific type of children.
 *
 * @category Widget
 */
export declare class Container<W extends Widget = Widget> extends BaseContainer<W> {
    static autoXML: WidgetAutoXML;
}
