importtype { Tweet } from"../types/Tweet";
/**
* Save tweets to a JSON file, deduplicating based on complete tweet object
* @param tweets Array of tweets to save
* @param outputFile Path to the output file
*/exportdeclarefunctionsaveTweets(tweets: Tweet[], outputFile?: string): void;