/**
 * Get the version of a crate from the registry.
 *
 * @param name - The name of the crate
 * @param tag - The tag of the crate
 * @param registry - The registry URL
 * @returns The version of the crate from the registry
 */
declare const getCrateRegistryVersion: (name: string, tag?: string, registry?: string) => Promise<string>;

export { getCrateRegistryVersion };
