/**
 * Get the version of a package from its package.json file.
 * @param packageName Name of the package to get the version for
 * @param cwd Current working directory to resolve from
 * @returns Version of the package or null if not found
 */
export declare function getPackageVersion(packageName: string, cwd: string): string | null;
