import { BaseManager } from "../BaseManager.js"; type CheckCLIVersionLatestArgs = { currentVersion: string; }; export declare class VersionsManager extends BaseManager { /** * Fetches the latest stable version of the Prismic CLI from npm. * * @returns The latest stable version string. */ getLatestCLIVersion(): Promise; /** * Checks if the current CLI version is the latest available version. * * @param args - Arguments object containing the current version. * * @returns `true` if the current version is the latest, `false` otherwise. */ checkIsCLIVersionLatest(args: CheckCLIVersionLatestArgs): Promise; } export {};