import { PublicKey, Transaction } from '@solana/web3.js';
import { Program } from '@project-serum/anchor';
import { HelioIdl } from './program';
import { WithdrawRequest } from './types';
export declare const getWithdrawTx: (program: Program<HelioIdl>, req: WithdrawRequest, fee?: number, otherSigner?: PublicKey) => Promise<Transaction>;
