import type { Plugin } from "../../types/plugin.d.ts"; import type { UpdateNotifierOptions } from "./has-new-version.d.ts"; export type UpdateNotifierPluginOptions = Partial>; /** * Create an update notifier plugin that checks for package updates. * @param options Update notifier configuration options. * @returns Plugin instance. */ export declare const updateNotifierPlugin: (options?: UpdateNotifierPluginOptions) => Plugin;