import { FetchSignerResult } from '@wagmi/core'; import { QueryConfig } from '../../types'; export declare type UseSignerConfig = Omit, 'cacheTime' | 'staleTime' | 'enabled'>; export declare const queryKey: () => readonly [{ readonly entity: "signer"; }]; export declare function useSigner({ suspense, onError, onSettled, onSuccess, }?: UseSignerConfig): Pick, "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">; };