import { Keypair, PublicKey } from '@solana/web3.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 { Signer, TransactionInstruction } from '@solana/web3.js'; export declare function claimWithdrawRequestInstruction({ program, withdrawRequestAccount, bondAccount, configAccount, voteAccount, stakeAccount, authority, splitStakeRentPayer, withdrawer, logger, }: { program: ValidatorBondsProgram; withdrawRequestAccount?: PublicKey; bondAccount?: PublicKey; configAccount?: PublicKey; voteAccount?: PublicKey; stakeAccount: PublicKey; authority?: PublicKey | Keypair | Signer | WalletInterface; splitStakeRentPayer?: PublicKey | Keypair | Signer | WalletInterface; withdrawer?: PublicKey; logger?: LoggerPlaceholder; }): Promise<{ instruction: TransactionInstruction; splitStakeAccount: Keypair; withdrawRequestAccount: PublicKey; voteAccount: PublicKey; }>; //# sourceMappingURL=claimWithdrawRequest.d.ts.map