import type { Action } from '../store/state/state-manager'; export declare const getRouteKey: (payload: Action["payload"]) => "openLocalAction" | "caseWideActions"; export declare const executeOpenActionRequest: (actionInPayload: Action["payload"], options: { isProcessAction?: boolean; actionMgrID?: number; }) => import("rxjs").Observable; export declare const processOpenActionRequest: (actionInPayload: Action["payload"], options: { isProcessAction?: boolean; actionMgrID?: number; }) => import("rxjs").Observable; export declare const deriveActionButtonMethod: (mode: string) => "submitBulkActionAsync" | "submitBulkAction"; export declare const postProcessOpenActionRequest: (response: any, actionsOut: Action[], { headers, actionInPayload }: { headers: any; actionInPayload: Action["payload"]; }) => Promise;