import { OffsetStyle } from '../styling/offset-style';
export declare class ContentBlockEntity {
    Content: string | null;
    ProviderName: string | null;
    SharedContentID: string | null;
    SfWidgetLabel: string;
    WrapperCssClass: string | null;
    TagName: string;
    Paddings: OffsetStyle | null;
    Margins: OffsetStyle | null;
    Attributes: {
        [key: string]: Array<{
            Key: string;
            Value: string;
        }>;
    } | null;
}
