#!/usr/bin/env bun /** * Pluginator CLI * * Command line interface for managing Minecraft server plugins */ import { Command } from 'commander'; /** * Create and configure the CLI program */ declare function createProgram(): Command; export { createProgram }; //# sourceMappingURL=cli.d.ts.map