import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Account } from '../../types/account.js'; import type { Chain } from '../../types/chain.js'; import type { API_VERSION } from '../../types/components.js'; export type SupportedWalletApiParameters = undefined; export type SupportedWalletApiErrorType = { error: string; }; export type SupportedWalletApiReturnType = API_VERSION[]; export declare function supportedWalletApi(client: Client): Promise; //# sourceMappingURL=supportedWalletApi.d.ts.map