import { BinanceSignedClient } from '../../../clients'; export interface ListAllSwapPoolsResponse { poolId: number; poolName: string; assets: string[]; } export declare function listAllSwapPools(client: BinanceSignedClient): Promise;