import * as web3 from '@solana/web3.js'; export declare type CloseDistributorInstructionArgs = { bump: number; walletBump: number; }; export declare type CloseDistributorInstructionAccounts = { base: web3.PublicKey; distributor: web3.PublicKey; distributorWallet: web3.PublicKey; receiver: web3.PublicKey; }; export declare function createCloseDistributorInstruction(accounts: CloseDistributorInstructionAccounts, args: CloseDistributorInstructionArgs): web3.TransactionInstruction;