export declare const SET_GAS_PRICE = "SET_GAS_PRICE"; export declare const SET_NATIVE_PRICE = "SET_NATIVE_PRICE"; export interface SetGasPriceAction { type: typeof SET_GAS_PRICE; payload: string; } export interface SetNativePriceAction { type: typeof SET_NATIVE_PRICE; payload: TokenPrices; } type TokenPrice = { usd: number; }; export type TokenPrices = { [token: string]: TokenPrice; }; export declare const setGasPrice: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload; export declare const setNativePrice: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload; export {}; //# sourceMappingURL=actions.d.ts.map