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 configureBondWithMintInstruction({ program, bondAccount, configAccount, voteAccount, validatorIdentity, tokenAccount, tokenAuthority, newBondAuthority, newCpmpe, newMaxStakeWanted, }: { program: ValidatorBondsProgram; bondAccount?: PublicKey; configAccount?: PublicKey; voteAccount?: PublicKey; validatorIdentity?: PublicKey; tokenAccount?: PublicKey; tokenAuthority?: PublicKey | Keypair | Signer | WalletInterface; newBondAuthority?: PublicKey; newCpmpe?: BN | number; newMaxStakeWanted?: BN | number; }): Promise<{ instruction: TransactionInstruction; bondAccount: PublicKey; }>; //# sourceMappingURL=configureBondWithMint.d.ts.map