/**
 * @packageDocumentation
 *
 * This module defines a custom esbuild plugin that fixes the `require` statement for ESM modules.
 */
import type { Plugin } from 'esbuild';
/**
 * Creates an esbuild plugin that fixes the `require` statement for ESM modules.
 *
 * @returns An esbuild `Plugin` object that fixes the `require` statement for ESM modules.
 */
export declare function fixEsmPlugin(): Plugin;
