import { PuzzleAccount } from '@puzzlehq/sdk-core'; type WalletState = { account?: PuzzleAccount; setAccount: (account: PuzzleAccount | undefined) => void; onDisconnect: () => void; }; export declare const useWalletStore: import("zustand").UseBoundStore, "persist"> & { persist: { setOptions: (options: Partial>) => void; clearStorage: () => void; rehydrate: () => void | Promise; hasHydrated: () => boolean; onHydrate: (fn: (state: WalletState) => void) => () => void; onFinishHydration: (fn: (state: WalletState) => void) => () => void; getOptions: () => Partial>; }; }>; export {};