import { useQuery, type DefaultError, type QueryKey } from '@tanstack/react-query'; export type MoonPayGeolocationResponse = { alpha2: string; alpha3: string; country: string; ipAddress: string; isAllowed: boolean; isBuyAllowed: boolean; isNftAllowed: boolean; isSellAllowed: boolean; isBalanceLedgerWithdrawAllowed: boolean; isFiatBalanceAllowed: boolean; isMoonPayBalanceAllowed: boolean; isLowLimitEnabled: boolean; state: string; }; type QueryType = typeof useQuery; type QueryOptions = Parameters['0']; type MoonpayCurrenciesQueryParams = { apiKey?: string; ipAddress?: string; }; declare const _default: (queryParams?: MoonpayCurrenciesQueryParams, queryOptions?: Partial) => import("@tanstack/react-query").UseQueryResult; export default _default; //# sourceMappingURL=useMoonPayGeolocation.d.ts.map