import { AptosClient } from '../clients/types'; export declare function getAccountCoinsData(client: AptosClient, coinType: string): Promise<{ amount: any; asset_type: string; is_frozen: boolean; is_primary: boolean; last_transaction_timestamp: any; last_transaction_version: any; owner_address: string; storage_id: string; token_standard: string; metadata?: { token_standard: string; symbol: string; supply_aggregator_table_key_v1?: string | null | undefined; supply_aggregator_table_handle_v1?: string | null | undefined; project_uri?: string | null | undefined; name: string; last_transaction_version: any; last_transaction_timestamp: any; icon_uri?: string | null | undefined; decimals: number; creator_address: string; asset_type: string; } | null | undefined; }[]>;