import type { SmartAccount } from '@particle-network/aa-plugin';
type State = {
    smartAccount: SmartAccount | null;
};
type Actions = {
    setSmartAccount: (smartAccount: SmartAccount | null) => void;
};
export declare const useAAPlugin: import("zustand").UseBoundStore<import("zustand").StoreApi<State & Actions>>;
export {};
