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