import { Pair } from '../models/Pair.js';
/**
 * Fetches liquidity pools for a given token address.
 * @param chainId - The blockchain identifier (e.g., "solana").
 * @param tokenAddress - The token address.
 * @returns A promise that resolves to an array of Pair instances.
 */
export declare const getTokenPools: (chainId: string, tokenAddress: string) => Promise<Pair[]>;
