/// export declare enum Actions { SEND = "send", IBC = "ibc", BUY = "buy", SWAP = "swap", BRIDGE = "bridge" } export type ActionListConfig = Record void; enabled?: boolean; order?: number; }>; export type ActionProps = { label: string; onClick: () => void; enabled: boolean; icon: React.ReactNode; }; export type ActionListType = Record; export type ActionListContextType = { actionRecords: Record; showActionButtons: boolean; }; export declare const ActionListContextProvider: React.FC>; export declare const useActionListContext: () => ActionListContextType;