export declare type CommandsType = 'pm' | 'plugin'; declare const commands: { add: { usage: string; lifecycleEvents: string[]; options: { "--plugin ": { usage: string; shortcut: string; }; "--pm [pm]": { usage: string; shortcut: string; config: { default: string; }; }; }; }; }; export { commands, };