import { Connection, Transaction } from "@solana/web3.js";
import { BuyParams, SellParams } from "./interfaces";
export declare class MeteoraTrader {
    private readonly connection;
    private readonly dbcClient;
    constructor(connection: Connection);
    buy(params: BuyParams): Promise<Transaction>;
    sell(params: SellParams): Promise<Transaction>;
}
//# sourceMappingURL=index.d.ts.map