import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; export declare const cleanUpRfqStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; export type CleanUpRfqInstructionAccounts = { taker: web3.PublicKey; protocol: web3.PublicKey; rfq: web3.PublicKey; whitelist: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const cleanUpRfqInstructionDiscriminator: number[]; export declare function createCleanUpRfqInstruction(accounts: CleanUpRfqInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;