import { SectionElement } from './sectionElement'; import { ActionButton } from './actionButton'; import { CallAPISettings } from './callAPISettings'; export interface SectionContent { title: string; name: string; type: string; showFooterButtons: boolean; footerButtons: ActionButton[]; showHeaderButtons: boolean; headerButtons: ActionButton[]; elements: SectionElement[]; apiCallData: CallAPISettings; options: { [key: string]: object; }; tabset: { [key: string]: object; }; }