import { SectionType } from './section-type'; import { OffsetStyle } from '../../styling/offset-style'; export interface SectionDto { sectionType?: SectionType; cssClassName?: string; } export declare enum NoIntentAction { None = "None", GenerateWithPredefinedQuery = "GenerateWithPredefinedQuery" } export declare class IntentDrivenContentEntity { SectionsConfiguration: SectionDto[]; NoProvidedIntent: NoIntentAction; DefaultQuery: string | null; SfViewName: string; Margins: OffsetStyle | null; SfWidgetLabel: string | null; ContentCssClass: string; PageTitleAndSummaryCssClass: string; SectionTitleAndSummaryCssClass: string; RichTextCssClass: string; ContentItemsListCssClass: string; ContentItemsCardsCssClass: string; HeroCssClass: string; FaqCssClass: string; }