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