import type { AsyncThunkAction } from '@reduxjs/toolkit'; import type { CoreEngine } from '../../app/engine.js'; /** * Internal and experimental actions loader for the IPX. * @internal */ export interface IPXActionsHistoryActionCreators { addPageViewEntryInActionsHistory(itemPermanentId: string): AsyncThunkAction; } export declare function loadIPXActionsHistoryActions(engine: CoreEngine): IPXActionsHistoryActionCreators;