import { Program } from "@coral-xyz/anchor";
import { PublicKey, TransactionInstruction } from "@solana/web3.js";
import { BasketsProgram } from "../../idl/types";
import { WithdrawState } from "../../state/withdrawState";
export declare function sellWithdrawBeforeRebalanceIx(params: {
    program: Program<BasketsProgram>;
    withdrawStateData: WithdrawState;
    payer: PublicKey;
    fromTokenMint: PublicKey;
}): Promise<TransactionInstruction>;
