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