import { GetSectionContentResponse, PageBuilderDefaultInput } from ".."; export declare class SectionOpts { content?: GetSectionContentResponse; sectionId?: string; parameters?: string[]; } export declare class GetSectionListDataContent { view?: PageBuilderDefaultInput; section?: SectionOpts; } export declare class GetSectionListContent { type: 'view' | 'section-content'; data: GetSectionListDataContent; } export declare class GetSectionListResponse { id: string; title: string; descriptions?: string[]; icon?: string; disabled?: boolean; disabledMessage?: string; content?: GetSectionListContent; extra?: { [key: string]: any; }; }