import BN from 'bn.js'; import { PublicKey, TransactionInstruction } from '@solana/web3.js'; export declare function flashWithdrawIx(params: { keeper: PublicKey; basket: PublicKey; rebalanceIntent?: PublicKey; intent?: PublicKey; mintIn: PublicKey; mintOut: PublicKey; amountIn: BN; amountOut: BN; mode?: number; }): TransactionInstruction; export declare function flashDepositIx(params: { keeper: PublicKey; basket: PublicKey; rebalanceIntent?: PublicKey; intent?: PublicKey; mintIn: PublicKey; mintOut: PublicKey; }): TransactionInstruction;