import { ChainId } from '../chain'; interface UsePrice { chainId: ChainId | undefined; address: string | undefined; enabled?: boolean; } export declare const usePrice: ({ chainId, address, enabled }: UsePrice) => import('@tanstack/react-query').UseQueryResult; export {};