import { RepoInfo } from './types';
interface IsUpdateAvailableOptions extends RepoInfo {
    currentVersion: string;
    accessToken?: string;
}
export declare function isUpdateAvailable(options: IsUpdateAvailableOptions): Promise<boolean>;
export declare function newerVersion(latestVersion: string, currentVersion: string): boolean;
export {};
