import { schema } from '@vibeflow/database'; import { SlackMessagePayload, TweetCandidate } from '@vibeflow/core'; declare function buildTweetNotificationMessage(tweet: schema.Tweet): SlackMessagePayload; declare function buildReportSummaryMessage(summary: { total: number; mentions: number; keywords: number; }): SlackMessagePayload; declare function buildMostRelevantTweetsReport(tweetCandidates: TweetCandidate[]): SlackMessagePayload; export { buildMostRelevantTweetsReport, buildReportSummaryMessage, buildTweetNotificationMessage };