import * as web3 from '@solana/web3.js'; import * as beet from '@convergence-rfq/beet'; export type CreateWhitelistInstructionArgs = { whitelist: web3.PublicKey[]; }; export declare const createWhitelistStruct: beet.FixableBeetArgsStruct; export type CreateWhitelistInstructionAccounts = { whitelistAccount: web3.PublicKey; creator: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const createWhitelistInstructionDiscriminator: number[]; export declare function createCreateWhitelistInstruction(accounts: CreateWhitelistInstructionAccounts, args: CreateWhitelistInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;