import { SectionType, SectionChildType } from "../common/widget-enums"; import { Widget } from "../widgets/widget"; export declare abstract class AxSection { id: string; widget: Widget; showPrompt: boolean; type: SectionType; isCollapsible: boolean; sections: Array; sectionChildType: SectionChildType; constructor(textValue?: AxSection); /** * Function to create new text value */ createNewTextValue(): void; /**function to create text value with existing value * *@param textValue * */ createTextValue(textValue?: any): void; }