/** * A custom hook that wraps the `useAccount` hook from wagmi, incorporating a component mount check. * * @returns {object} An enhanced account object that includes all properties and methods from `useAccount`, * along with an improved `isConnected` boolean that also takes the component's mount state into consideration. */ export declare const useMountedAccount: () => { isConnected: boolean; address: undefined; addresses: undefined; chain: undefined; chainId: undefined; connector: undefined; isReconnecting: false; isConnecting: false; isDisconnected: true; status: "disconnected"; } | { isConnected: boolean; address: import("viem").Address; addresses: readonly [import("viem").Address, ...import("viem").Address[]]; chain: import("viem").Chain | undefined; chainId: number; connector: import("wagmi").Connector; isConnecting: false; isDisconnected: false; isReconnecting: false; status: "connected"; } | { isConnected: boolean; address: import("viem").Address | undefined; addresses: readonly import("viem").Address[] | undefined; chain: import("viem").Chain | undefined; chainId: number | undefined; connector: import("wagmi").Connector | undefined; isConnecting: false; isDisconnected: false; isReconnecting: true; status: "reconnecting"; } | { isConnected: boolean; address: import("viem").Address | undefined; addresses: readonly import("viem").Address[] | undefined; chain: import("viem").Chain | undefined; chainId: number | undefined; connector: import("wagmi").Connector | undefined; isReconnecting: false; isConnecting: true; isDisconnected: false; status: "connecting"; }; //# sourceMappingURL=useMountedAccount.d.ts.map