import { TweetV1 } from 'twitter-api-v2'; import type { TransactionData } from '../types/models/transaction.model.js'; import type { Config, Options } from '../types/interfaces/enft.interface.js'; /** * * A method that handles the tweeting of transactions. * * @async * @function */ declare const handleTweet: (tx: TransactionData, config: Config, options: Options) => Promise; export { handleTweet }; //# sourceMappingURL=handleTweet.d.ts.map