export declare const versionFromPackageJson: any;
export declare function tagFromVersion(version: string): string;
interface InstallOptions {
    version?: string;
    destDir?: string;
    fileName?: string;
    platform?: string;
    verbose?: boolean;
}
export declare function install({ version, destDir, fileName, platform, verbose, }?: InstallOptions): Promise<string>;
export {};
