import * as anchor from "@project-serum/anchor"; import MerkleTree from "merkletreejs"; export declare const getShellProvider: (connection: anchor.web3.Connection) => anchor.AnchorProvider; export declare const getMerkleTree: (mints: anchor.web3.PublicKey[]) => { root: number[]; tree: MerkleTree; }; export declare const getMerkleProof: (mints: anchor.web3.PublicKey[], mint: anchor.web3.PublicKey) => number[][];