import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; export declare const cleanUpWhitelistStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; export type CleanUpWhitelistInstructionAccounts = { whitelistAccount: web3.PublicKey; creator: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const cleanUpWhitelistInstructionDiscriminator: number[]; export declare function createCleanUpWhitelistInstruction(accounts: CleanUpWhitelistInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;