import * as web3 from '@solana/web3.js'; export declare type NewDistributorInstructionArgs = { bump: number; root: number[]; temporal: web3.PublicKey; }; export declare type NewDistributorInstructionAccounts = { base: web3.PublicKey; distributor: web3.PublicKey; payer: web3.PublicKey; }; export declare function createNewDistributorInstruction(accounts: NewDistributorInstructionAccounts, args: NewDistributorInstructionArgs): web3.TransactionInstruction;