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