import { CommandTypesBase } from "../types/command.mjs"; import { UpdateCheckConfig } from "../feature/update-check.mjs"; //#region src/extension/update-check.d.ts /** * Extension that adds background update checking: * - Checks for newer versions on npm (or custom registry) in the background * - Shows an update notification after command execution * - Respects `--no-update-check` flag to suppress * * Usage: * ```ts * createPadrone('my-cli') * .extend(padroneUpdateCheck({ packageName: 'my-cli' })) * ``` */ declare function padroneUpdateCheck(config?: UpdateCheckConfig): (builder: T) => T; //#endregion export { padroneUpdateCheck }; //# sourceMappingURL=update-check.d.mts.map