export default GuiController;
declare class GuiController extends View<HTMLElement> {
    constructor();
    el: Element;
    rowSize: number;
    rows: any[];
    /**
     *
     * @param {GuiControl} control
     * @param {string} label
     */
    addRow(control: GuiControl, label: string): void;
}
import View from '../View.js';
//# sourceMappingURL=GuiController.d.ts.map