import type { InsightAPIErrorStatusResponse } from '../../api/service/insight/insight-api-client.js'; export interface UserActionTimeline { precedingSessions: UserSession[]; session?: UserSession; followingSessions: UserSession[]; } export interface UserSession { start: number; end: number; actions: UserAction[]; } export interface UserAction { actionType: UserActionType; timestamp: number; eventData?: { type?: string; value?: string; }; cause?: string; searchHub?: string; document?: { title: string; clickUri?: string; uriHash?: string; contentIdKey?: string; contentIdValue?: string; }; query?: string; } export declare enum UserActionType { SEARCH = "SEARCH", CLICK = "CLICK", VIEW = "VIEW", CUSTOM = "CUSTOM", TICKET_CREATION = "TICKET_CREATION" } export interface UserActionsState { /** * The timeline of user actions. */ timeline?: UserActionTimeline; /** * The names of custom actions to exclude from the user actions. */ excludedCustomActions: string[]; /** * The ticket creation date in the [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */ ticketCreationDate?: string; /** * `true` if fetching the user actions is in progress and `false` otherwise. */ loading: boolean; /** * The error response if fetching the user actions failed. */ error?: InsightAPIErrorStatusResponse; } export declare function getInsightUserActionsInitialState(): UserActionsState;