import { Command } from "@oclif/command"; import { Observable } from "rxjs"; export declare function readYamlFile(filePath: string): Observable; export default class Package extends Command { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; compress: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; required: boolean; }[]; run(): Promise; }