import type { CommandModule } from "yargs"; /** * Set stability index to a command. * - Show stability on help message * - Emit warning on execution * @param cmd Command module * @param stability "experimental" or "deprecated" * @param message additional information */ export declare const setStability: (cmd: CommandModule, stability: "experimental" | "deprecated", message: string) => CommandModule;