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 { Keypair, Signer, TransactionInstruction } from '@solana/web3.js'; export declare function configureBondInstruction({ program, bondAccount, configAccount, voteAccount, authority, newBondAuthority, newCpmpe, newMaxStakeWanted, }: { program: ValidatorBondsProgram; bondAccount?: PublicKey; configAccount?: PublicKey; voteAccount?: PublicKey; authority?: PublicKey | Keypair | Signer | WalletInterface; newBondAuthority?: PublicKey; newCpmpe?: BN | number; newMaxStakeWanted?: BN | number; }): Promise<{ bondAccount: PublicKey; instruction: TransactionInstruction; }>; //# sourceMappingURL=configureBond.d.ts.map