import { type AccountInterface } from 'starknet';
import { type AccountConfig } from './consts.js';
export declare const accountState: {
    isConnected: boolean;
    address?: string;
    sessionAccount?: AccountInterface;
    walletAccount?: AccountInterface;
    providerName?: string;
};
export declare function refresh(): Promise<void>;
export declare function setup(config?: Partial<AccountConfig>): Promise<typeof accountState>;
export default accountState;
