import { PublicKey } from '@solana/web3.js'; import type { ValidatorBondsProgram } from '../sdk'; import type { TransactionInstruction } from '@solana/web3.js'; export declare function mergeStakeInstruction({ program, configAccount, sourceStakeAccount, destinationStakeAccount, settlementAccount, stakerAuthority, }: { program: ValidatorBondsProgram; configAccount: PublicKey; sourceStakeAccount: PublicKey; destinationStakeAccount: PublicKey; settlementAccount?: PublicKey; stakerAuthority?: PublicKey; }): Promise<{ instruction: TransactionInstruction; }>; //# sourceMappingURL=mergeStake.d.ts.map