import { BaseClient, BaseClientConfig } from '../../shared/base-client';
import { PumpSwapPoolResponse } from './types';
export declare class PumpSwapClient extends BaseClient {
    constructor(config?: BaseClientConfig);
    /**
     * Get pump pool data for a specific token
     * @param baseToken The base token address to get pool data for
     * @returns Pump pool data for the token
     */
    getPumpPool(baseToken: string): Promise<PumpSwapPoolResponse>;
}
