export interface SectionElementStatus { type: SectionElementStatus.TypeEnum; help?: { text?: string; html?: any; } & { [key: string]: object; }; } export declare namespace SectionElementStatus { type TypeEnum = 'danger' | 'warning' | 'success' | 'info'; const TypeEnum: { Danger: TypeEnum; Warning: TypeEnum; Success: TypeEnum; Info: TypeEnum; }; }