import { ActionCacheEntry } from "../../types";
interface CreateScriptFromActionCacheParams {
taskId?: string;
steps: ActionCacheEntry[];
}
export declare function createScriptFromActionCache(params: CreateScriptFromActionCacheParams): string;
export {};