/**
 * Update package.json dependencies to use pnpm catalog versions and local workspace versions
 *
 * @param packageRoot - The root of the package
 * @param workspaceRoot - The root of the workspace
 */
declare function pnpmUpdate(packageRoot: string, workspaceRoot?: string): Promise<void>;

export { pnpmUpdate };
