///
import { Signer } from 'types/Signer';
import { WalletContents } from '../types/WalletContents';
import { WalletAccount } from '@mysten/wallet-standard';
import { InvalidPackages } from '../types/InvalidPackages';
export declare type Account = {
address?: string;
contents?: WalletContents;
};
declare const useAccount: (signer: Signer | null, network: string, explicitInterval?: number, invalidPackages?: InvalidPackages) => {
account: Account;
altAccount: WalletAccount | undefined;
setAltAccount: import("react").Dispatch>;
};
export default useAccount;