import { OptionsBase, ComponentModelBase } from '../../../shared-form/models'; import { ComponentType, ValueType } from '../../../shared-form/enums'; export interface SectionOptions extends OptionsBase { title?: string; } export interface SectionModel extends ComponentModelBase { isNew?: boolean; options: SectionOptions; } export declare class NewSectionModel implements SectionModel { id: string; type: ComponentType; valueType: ValueType; sysName: string; components: ComponentModelBase[]; isNew: boolean; isError: boolean; options: SectionOptions; constructor(sysName: string); }