export declare const getLatestClientVersion: () => Promise; export declare const downloadTargetMint: ({ targetVersion, existingVersion, }: { targetVersion: string; existingVersion: string | null; }) => Promise; export declare const getVersionMap: () => Promise; export declare const getCompatibleClientVersion: ({ cliVersion, }: { cliVersion: string; }) => Promise; export declare const tryDownloadTargetMint: ({ targetVersion, existingVersion, }: { targetVersion: string; existingVersion: string | null; }) => Promise;