import type { NFT } from './NFT';
export type MintAndSendResultClass = {
    mintAndSendId?: number | null;
    sendedNft?: Array<NFT> | null;
};
