import { type ProjectAutoUpdateRegistryResult } from "../cli/project-auto-update.js"; export type ProjectAutoUpdateScheduler = { schedule(projectDir: string): void; }; export type ProjectAutoUpdateSchedulerOptions = { readonly installedVersion?: string; readonly readLatestVersion?: () => Promise; }; export declare function createProjectAutoUpdateScheduler(options?: ProjectAutoUpdateSchedulerOptions): ProjectAutoUpdateScheduler;