import { SWRConfiguration } from "swr"; import { CosmosChainData } from "./../../../core/src/services/data"; export declare const useChains: (options?: SWRConfiguration) => import("swr/_internal").SWRResponse>> | undefined>; export declare const useSkipChains: (args?: Partial<{ chainIds?: string[]; includeEVM?: boolean; includeSVM?: boolean; includeTestnets?: boolean; }>, config?: SWRConfiguration) => import("swr/_internal").SWRResponse number) | undefined; refreshWhenHidden?: boolean | undefined; refreshWhenOffline?: boolean | undefined; revalidateOnFocus?: boolean | undefined; revalidateOnReconnect?: boolean | undefined; revalidateOnMount?: boolean | undefined; revalidateIfStale?: boolean | undefined; shouldRetryOnError?: boolean | ((err: any) => boolean) | undefined; keepPreviousData?: boolean | undefined; suspense?: boolean | undefined; fallbackData?: any; fetcher?: import("swr/_internal").BareFetcher | undefined; use?: import("swr/_internal").Middleware[] | undefined; fallback?: { [key: string]: any; } | undefined; isPaused?: (() => boolean) | undefined; onLoadingSlow?: ((key: string, config: Readonly>>) => void) | undefined; onSuccess?: ((data: any, key: string, config: Readonly>>) => void) | undefined; onError?: ((err: any, key: string, config: Readonly>>) => void) | undefined; onErrorRetry?: ((err: any, key: string, config: Readonly>>, revalidate: import("swr/_internal").Revalidator, revalidateOpts: Required) => void) | undefined; onDiscarded?: ((key: string) => void) | undefined; compare?: ((a: any, b: any) => boolean) | undefined; isOnline?: (() => boolean) | undefined; isVisible?: (() => boolean) | undefined; }>;