import { Command } from 'commander'; import { Rettiwt } from '../Rettiwt'; /** * Creates a new 'tweet' command which uses the given Rettiwt instance. * * @param rettiwt - The Rettiwt instance to use. * @returns The created 'tweet' command. */ declare function createTweetCommand(rettiwt: Rettiwt): Command; export default createTweetCommand;