import { Account } from "../antelope"; /** * Create a dummy NFT collection, mint NFTs to each account, and then transfer them to the author * @param {Account} atomicassetsContract - The contract that will be used to mint the assets. * @param {Account} author - The account that will be the creator of the collection and the schema. * @param {number} mintToEach - How many assets to mint to each account * @param {Account[]} accountsToMintTo - An array of accounts to mint assets to. */ export declare const createDummyNfts: (atomicassetsContract: Account, author: Account, mintToEach: number, accountsToMintTo: Account[]) => Promise;