/**
 * Transform ES2023 `Array.prototype.toReversed()` to `Array.prototype.slice().reverse()`.
 *
 * Compatibility: ES3
 * - `slice()`: ES3
 * - `reverse()`: ES1
 *
 * @return {import("@babel/core").PluginObj}
 */
export default function transformArrayPrototypeToReversed(): import("@babel/core").PluginObj;
