import { OffsetStyle } from '../styling/offset-style';
import { LinkModel } from '../../editor/widget-framework/link-model';
import { ButtonStyle } from './button-style';
import { AlignmentStyle } from './alignment-style';
export declare class CallToActionEntity {
    PrimaryActionLabel?: string;
    PrimaryActionLink?: LinkModel;
    SecondaryActionLabel?: string;
    SecondaryActionLink?: LinkModel;
    Style?: {
        [key: string]: ButtonStyle;
    };
    Position?: {
        [key: string]: AlignmentStyle;
    };
    Margins: OffsetStyle | null;
    SfWidgetLabel: string;
    CssClass?: string;
    Attributes: {
        [key: string]: Array<{
            Key: string;
            Value: string;
        }>;
    } | null;
}
