import { WidgetCommonSettings, WidgetOption } from '../types'; export declare const EXTERNAL_WIDGETS_KEYS: { readonly CUSTOMER_INFORMATION: "CUSTOMER_INFORMATION"; readonly VISITOR_INFORMATION: "VISITOR_INFORMATION"; readonly ITEM_RECOMMENDATION: "ITEM_RECOMMENDATION"; readonly USER_ACTIVITY: "USER_ACTIVITY"; readonly ARTICLES_TRENDING_REALTIME: "ARTICLES_TRENDING_REALTIME"; readonly IDENTITY_GRAPH: "IDENTITY_GRAPH"; }; export declare const WIDGET_COMMON_SETTINGS: WidgetCommonSettings; export declare const WIDGET_SETTINGS_DEFAULT: { CUSTOMER_INFORMATION: { width: number; height: number; fullName: { id: string; name: string; label: string; }[]; customerSince: { id: string; name: string; label: string; }[]; lastActivity: { id: string; name: string; label: string; }[]; socialGroups: { name: string; attributes: { id: string; name: string; label: string; }[]; }[]; informationGroups: { key: string; name: string; attributes: { id: string; name: string; label: string; }[]; }[]; minWidth?: number; minHeight?: number; masterDateRange?: { fromDate: string; toDate: string; }; }; ITEM_RECOMMENDATION: { width: number; height: number; contentSources: {}; image: never[]; imageTitle: never[]; itemLink: never[]; viewType: string; displayItems: number; minWidth?: number; minHeight?: number; masterDateRange?: { fromDate: string; toDate: string; }; }; VISITOR_INFORMATION: { width: number; minHeight: number; height: number; informationGroups: { key: string; name: string; attributes: { id: string; name: string; label: string; }[]; }[]; minWidth?: number; masterDateRange?: { fromDate: string; toDate: string; }; }; USER_ACTIVITY: { height: number; width: number; dateRangeDimension: never[]; dateRangeDefault: string; dateRangeCustom: null; enableFilter: boolean; eventDisplay: never[]; filterInfo: { recentFilters: never[]; filters: never[]; selectedFilterId: number; }; minWidth?: number; minHeight?: number; masterDateRange?: { fromDate: string; toDate: string; }; }; IDENTITY_GRAPH: { width: number; minHeight: number; height: number; identityGraph: { id: string; name: string; label: string; }[]; minWidth?: number; masterDateRange?: { fromDate: string; toDate: string; }; }; }; export declare const EXTERNAL_WIDGETS: Record;