import { ActionOutput, ActionType } from "../../types";
import { ActionCacheEntry } from "../../types/agent/types";
import { A11yDOMState } from "../../context-providers/a11y-dom/types";
export declare const buildActionCacheEntry: ({ stepIndex, action, actionOutput, domState, }: {
    stepIndex: number;
    action: ActionType;
    actionOutput: ActionOutput;
    domState: A11yDOMState;
}) => ActionCacheEntry;
