import actionNames from "../action-names";
import { type Action, AppThunk } from "./types";
import { CustomGuiActionPayload } from "../../../adapters/tool/types";
export type RunCustomGuiAction = Action<typeof actionNames.RUN_CUSTOM_GUI_ACTION, CustomGuiActionPayload>;
export declare const runCustomGui: (payload: RunCustomGuiAction['payload']) => RunCustomGuiAction;
export declare const thunkRunCustomGuiAction: (payload: CustomGuiActionPayload) => AppThunk;
export type CustomGuiAction = RunCustomGuiAction;
