import { Command } from "commander"; import { type SubmitResponse } from "../lib/api.js"; import { AbstractCommand } from "./AbstractCommand.js"; export declare class UploadCommand extends AbstractCommand { commandName: string; commandDescription: string; commandUseCases: string[]; isDeveloperCommand: boolean; initialize(program: Command): Command; execute(options: any): Promise; printDetailedHelp(): void; upload(path: string, name: string, description: string, category: string, tags: string, configuration?: any, userState?: any): Promise; } //# sourceMappingURL=UploadCommand.d.ts.map