export interface SectionHolder {
    Style?: {
        [key: string]: string;
    };
    Attributes: {
        [key: string]: string;
    };
    VideoUrl?: string | null;
    ShowVideo?: boolean;
}
