import { schema } from '@vibeflow/database'; declare function replyToTweet({ tweet }: { tweet: schema.Tweet; }): Promise; declare function batchReplyToTweets({ tweets, }: { tweets: schema.Tweet[]; }): Promise; export { batchReplyToTweets, replyToTweet };