export declare function hasBuiltinCmake(): Promise; export declare function getCmakePath(): Promise; export declare function downloadCmakeIfNeeded(wrapWithStatusLogs?: boolean): Promise; export declare function clearLocalCmake(): Promise; /** * There's an issue where after a compilation, the cmake binaries have permissions that don't allow them to be deleted. * This function fixes that. * It should be run after each compilation. */ export declare function fixXpackPermissions(): Promise;