import type { AccountInfo, AssociatedTokenAccount } from './types'; /** * Accounts API methods */ export declare const accountsApi: { /** * Get account nonce * @param address Address of the account to lookup nonce for * @returns Promise with account info response */ getNonce: (address: string) => import("../../client/index.js").PromiseWrapper<"custom", AccountInfo, AccountInfo, AccountInfo, import("../../client/index.js").ParsedError, import("../../client/index.js").ParsedError | AccountInfo, import("../../client/index.js").ParsedError<"timeout">, ""> & Promise; /** * Get associated token account * @param address Address of the account to lookup associated token account for * @param token Token address to lookup associated token account for * @returns Promise with associated token account response */ getTokenAccount: (address: string, token: string) => import("../../client/index.js").PromiseWrapper<"custom", AssociatedTokenAccount, AssociatedTokenAccount, AssociatedTokenAccount, import("../../client/index.js").ParsedError, import("../../client/index.js").ParsedError | AssociatedTokenAccount, import("../../client/index.js").ParsedError<"timeout">, ""> & Promise; }; export default accountsApi;