/**
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md.
*/
/**
* Checks if a specific version of a package is available in the npm registry.
*/
export default function checkVersionAvailability(version: string, packageName: string): Promise<boolean>;
