import type { Hex } from "@metamask/utils"; import type { PayloadAction } from "@reduxjs/toolkit"; import type { ApplicationState } from "./store.cjs"; export type ChainState = { chainId: Hex; }; export declare const chainSlice: import("@reduxjs/toolkit").Slice, action: PayloadAction) => void; }, "chain">; export declare const setChain: import("@reduxjs/toolkit").ActionCreatorWithPayload<`0x${string}`, "chain/setChain">; /** * Get the chain ID from the state. * * @param state - The application state. * @returns The chain ID. */ export declare const getChainId: (state: ApplicationState) => `0x${string}`; //# sourceMappingURL=chain.d.cts.map