import { GetAccountResult } from '@wagmi/core'; import { QueryConfig } from '../../types'; export declare type UseAccountConfig = Pick, 'suspense' | 'onError' | 'onSettled' | 'onSuccess'>; export declare const queryKey: () => readonly [{ readonly entity: "account"; }]; export declare function useAccount({ suspense, onError, onSettled, onSuccess, }?: UseAccountConfig): Pick, Error>, "data" | "error" | "isError" | "isLoading" | "isSuccess" | "isFetched" | "isFetching" | "isRefetching" | "refetch" | "fetchStatus"> & { isIdle: boolean; status: "error" | "loading" | "success" | "idle"; internal: Pick, "isLoadingError" | "isRefetchError" | "dataUpdatedAt" | "errorUpdatedAt" | "failureCount" | "isFetchedAfterMount" | "isPaused" | "isPlaceholderData" | "isPreviousData" | "isStale" | "remove">; };