import { PublicKey, TransactionInstruction } from '@solana/web3.js'; export declare function withdrawFeesIx(params: { claimer: PublicKey; basketTokenMint: PublicKey; feeType: number; }): TransactionInstruction; export declare function claimFeeTokensFromBasketIx(params: { signer: PublicKey; basket: PublicKey; withdrawBasketFees: PublicKey; rentPayer: PublicKey; owners: PublicKey[]; tokenMints: PublicKey[]; }): TransactionInstruction; export declare function claimFeeTokensFromBasketIxs(signer: PublicKey, basket: PublicKey, withdrawBasketFees: PublicKey, rentPayer: PublicKey, owners: PublicKey[], tokenMints: PublicKey[]): TransactionInstruction[];