/** * -------------------------------------------------------------------- * docmd : the zero-config documentation engine. * * @package @docmd/core (and ecosystem) * @website https://docmd.io * @repository https://github.com/docmd-io/docmd * @license MIT * @copyright Copyright (c) 2025-present docmd.io * * [docmd-source] - Please do not remove this header. * -------------------------------------------------------------------- */ declare function installPlugin(pluginInput: string, opts?: { verbose?: boolean; }): Promise; declare function removePlugin(pluginInput: string, opts?: { verbose?: boolean; }): Promise; export { installPlugin, removePlugin };