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