import { OptionsBase, ComponentModelBase } from '../../../shared-form/models'; import { ComponentType, ValueType } from '../../../shared-form/enums'; export declare class GroupComponent implements ComponentModelBase { id: string; previewTooltip: string; sysName: string; type: ComponentType; valueType: ValueType; components: ComponentModelBase[]; isError: boolean; options: OptionsBase; constructor(label: string, tooltip: string, icon: string); }