import { ActionCreatorWithPayload } from "@reduxjs/toolkit"; import { TokenList, Version } from "@uniswap/token-lists"; export declare const fetchTokenList: Readonly<{ pending: ActionCreatorWithPayload<{ url: string; requestId: string; }>; fulfilled: ActionCreatorWithPayload<{ url: string; tokenList: TokenList; requestId: string; }>; rejected: ActionCreatorWithPayload<{ url: string; errorMessage: string; requestId: string; }>; }>; export declare const addList: ActionCreatorWithPayload; export declare const removeList: ActionCreatorWithPayload; export declare const enableList: ActionCreatorWithPayload; export declare const disableList: ActionCreatorWithPayload; export declare const acceptListUpdate: ActionCreatorWithPayload; export declare const rejectVersionUpdate: ActionCreatorWithPayload;