import { PublicKey } from '@solana/web3.js'; import BN from 'bn.js'; import type { ValidatorBondsProgram } from '../sdk'; import type { Wallet as WalletInterface } from '@coral-xyz/anchor/dist/cjs/provider'; import type { LoggerPlaceholder } from '@marinade.finance/ts-common'; import type { Keypair, Signer, TransactionInstruction } from '@solana/web3.js'; export declare function initWithdrawRequestInstruction({ program, bondAccount, configAccount, voteAccount, authority, rentPayer, amount, logger, }: { program: ValidatorBondsProgram; bondAccount?: PublicKey; configAccount?: PublicKey; voteAccount?: PublicKey; authority?: PublicKey | Keypair | Signer | WalletInterface; rentPayer?: PublicKey | Keypair | Signer | WalletInterface; amount: BN | number; logger?: LoggerPlaceholder; }): Promise<{ instruction: TransactionInstruction; bondAccount: PublicKey; withdrawRequestAccount: PublicKey; }>; //# sourceMappingURL=initWithdrawRequest.d.ts.map