import { SukuTransaction } from "../interfaces"; export declare const generateUUIDKey: () => string; export declare const generateTransaction: (amount: number | string, toAddress: string, contractAddress: string | null, decimals: number) => SukuTransaction; export declare const generateTransactionNFT: (tokenType: string, tokenId: string, contractAddress: string, fromAddress: string, toAddress: string) => SukuTransaction;