import type { ActionContext } from '../../../../core/schema-types/types'; import type { AppActions, EntityActionTypes, EntityAction } from '../types'; export declare const addContext: (action: EntityAction, context: ActionContext) => AppActions; export declare const useDispatchWithContext: (initContext: ActionContext) => (action: EntityActionTypes) => void;