export declare const DISPLAY_VERSION: string; export declare function isDeveloperBuild(): boolean; export declare function versionNumber(): string; export declare class VersionCheckTTL { static timestampFilePath(): string; private readonly file; private readonly ttlSecs; constructor(file?: string, ttlSecs?: number); hasExpired(): Promise; update(latestVersion?: string): Promise; } export declare function latestVersionIfHigher(currentVersion: string, cacheFile: VersionCheckTTL): Promise; export declare function displayVersionMessage(currentVersion?: string, versionCheckCache?: VersionCheckTTL): Promise;