import type { Observable } from 'rxjs'; import { CheckModuleVersionsOptions, ModuleStatusResponse } from './types'; /** * Retrieve whether or not the installed (or passed) `@sanity`-modules are up * to date and/or supported, and if they are outdated; which versions are is * the latest available on npm vs which ones are installed locally. * * @param options Options to use for resolving module status * @internal Not a stable API yet */ export declare function checkModuleStatus(options?: CheckModuleVersionsOptions): Observable; /** * Returns the currently installed version of the given module * * @param moduleName Name of module to get version number for * @internal Not a stable API yet */ export declare function getInstalledModuleVersion(moduleName: string): string | undefined; //# sourceMappingURL=moduleStatus.d.ts.map