export declare type GeneralFormFieldsetType = 'tab' | 'fieldset' | 'expandable'; export interface GeneralFormFieldsetSectionInterface { slug: string; title: string; description?: string; } export interface GeneralFormFieldsetConfigInterface { type: GeneralFormFieldsetType; sections: GeneralFormFieldsetSectionInterface[]; }