import { MixedContentContext } from '../../editor/widget-framework/mixed-content-context';
import { OffsetStyle } from '../styling/offset-style';
import { BreadcrumbIncludeOption } from './breadcrumb';
export declare class BreadcrumbEntity {
    SelectedPage?: MixedContentContext;
    BreadcrumbIncludeOption?: BreadcrumbIncludeOption;
    AddHomePageLinkAtBeginning?: boolean;
    AddCurrentPageLinkAtTheEnd?: boolean;
    IncludeGroupPages?: boolean;
    AllowVirtualNodes?: boolean;
    SfViewName?: string;
    Margins?: OffsetStyle;
    SfWidgetLabel?: string;
    WrapperCssClass?: string;
    Attributes?: {
        [key: string]: Array<{
            Key: string;
            Value: string;
        }>;
    };
}
