import { Token } from 'thena-sdk-core';
/**
 * Computes a pool address
 * @param tokenA The first token of the pair, irrespective of sort order
 * @param tokenB The second token of the pair, irrespective of sort order
 * @returns The pool address
 */
export declare function computePoolAddress({ tokenA, tokenB, }: {
    tokenA: Token;
    tokenB: Token;
}): string;
