export declare type DataLakePayload = { event_uuid: string; client_timestamp: number; account_uuid: string; user_uuid: string; client_uuid: string; session_uuid: string; page_url: string; workflow: string; event_type: string; event_data: string; }; export declare type UIEventLogParams = { eventName: keyof EventName; eventData: any; workflow: keyof Workflow; }; export declare type SharedEventNames> = T & { EDIT_CHANGE_LINK_TYPE: 'Sets the type of link between anchor, URL, email, or phone'; HEADLINE_SUGGESTIONS_ORB_VIEW: 'Insights orb is visible'; SB_CANVAS_UPLOAD_IMAGE_ICON_CLICK: 'Click Upload Image Icon'; SB_OPEN_CONTAINER_CHILD_SET_WIDTH: 'SB_OPEN_CONTAINER_CHILD_SET_WIDTH'; }; export interface EventName { SB_CANVAS_TOOLBAR_CLICK: 'canvas toolbar clicked'; SB_OPEN_CONTAINER_STACKING_CLICK: 'Changed the stacking alignment (row/column) of an OpenContainer'; SB_OPEN_CONTAINER_ALIGNMENT_CLICK: 'Changed the alignment (horizontal/ vertical) of an OpenContainer'; SB_CANVAS_POSITIONING_PANEL_CHANGED_MARGIN: 'SB_CANVAS_POSITIONING_PANEL_CHANGED_MARGIN'; SB_CANVAS_POSITIONING_PANEL_CHANGED_PADDING: 'SB_CANVAS_POSITIONING_PANEL_CHANGED_PADDING'; SB_COLOR_PICKER_ADDED_BRAND_COLOR: 'Added brand color'; SB_COLOR_PICKER_REMOVED_BRAND_COLOR: 'Removed brand color'; SB_COLOR_PICKER_APPLIED_BRAND_COLOR_TO_CONTENT: 'Applied brand color to content'; SB_APPLIED_BRAND_FONT_FAMILY_TO_CONTENT: 'Applied brand font family to content'; DELETE_ELEMENT: 'Deleted an element from a section'; SB_DTR_TOOLBAR_CLICK: 'sb_dtr_toolbar_click'; SB_DTR_MODAL_SAVE: 'sb_dtr_modal_save'; SB_DTR_REMOVE: 'sb_dtr_remove'; } export interface Workflow { edit: 'General page editing'; image_upload: 'Image Upload'; }