import { Command, Interfaces } from "@oclif/core"; //#region src/commands/x/index.d.ts declare class X extends Command { static summary: string; static description: string; static examples: Command.Example[]; static flags: Interfaces.FlagInput; static strict: boolean; run(): Promise; } //#endregion export { X as default };