import type { Address } from 'viem'; import type { LtDetailedAccount } from '../types/index.js'; import type { LighterApiClient } from './apiClient.js'; /** * Look up the Lighter account for an L1 address via `/api/v1/account`, * discriminating Lighter's account-not-found body code from generic failures. * * @public */ export declare const fetchDetailedAccount: (client: LighterApiClient, address: Address) => Promise; //# sourceMappingURL=fetchDetailedAccount.d.ts.map