import type { PrismicManager } from "@prismicio/manager"; type CheckCLIVersionArgs = { manager: PrismicManager; currentVersion: string; }; /** * Checks if the current CLI version is the latest available version. Throws an * Error if the version is outdated. * * @param args - Arguments object containing the manager and current version. * * @throws Error If the current version is not the latest. */ export declare function checkCLIVersion(args: CheckCLIVersionArgs): Promise; export {};