import { PublicKey } from '@solana/web3.js'; import type { CloseSettlementParams } from './closeSettlementV2'; import type { Wallet as WalletInterface } from '@coral-xyz/anchor/dist/cjs/provider'; import type { TransactionInstruction, Keypair, Signer } from '@solana/web3.js'; export declare function cancelSettlementInstruction(params: CloseSettlementParams & { authority?: PublicKey | Keypair | Signer | WalletInterface; }): Promise<{ instruction: TransactionInstruction; }>; //# sourceMappingURL=cancelSettlement.d.ts.map