import { 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 { Keypair, Signer, TransactionInstruction } from '@solana/web3.js'; export declare function emergencyResumeInstruction({ program, configAccount, pauseAuthority, logger, }: { program: ValidatorBondsProgram; configAccount?: PublicKey; pauseAuthority?: PublicKey | Keypair | Signer | WalletInterface; logger?: LoggerPlaceholder; }): Promise<{ instruction: TransactionInstruction; }>; //# sourceMappingURL=emergencyResume.d.ts.map