import { FormFieldModel, ObjectOrChildModel, TabAreaStyle, TabItem } from '../../../index';
export interface TabBoxModel extends FormFieldModel {
    /**
     * The tab, that should be selected initially.
     * If a string is provided, the tab will be resolved automatically.
     *
     * By default, the first tab will be selected.
     */
    selectedTab?: TabItem | string;
    tabItems?: ObjectOrChildModel<TabItem>[];
    tabAreaStyle?: TabAreaStyle;
}
//# sourceMappingURL=TabBoxModel.d.ts.map