import { useQuery, type DefaultError, type QueryKey } from '@tanstack/react-query'; type LighterAccount = { code: number; account_type: number; index: number; l1_address: string; status: number; collateral: string; available_balance: string; total_asset_value: string; }; type QueryType = typeof useQuery; type QueryOptions = Parameters['0']; /** * Fetches Lighter account info by either account index or EVM address. * Auto-detects the lookup type based on the input value. * Caches bidirectionally (both index and l1_address point to same data). */ declare const _default: (value?: string, queryOptions?: Partial) => import("@tanstack/react-query").UseQueryResult; export default _default; //# sourceMappingURL=useLighterAccount.d.ts.map