import { Plugin } from 'esbuild';

interface RDIPluginOptions {
}
/**
 * Remove Duplicate Imports
 * This plugin prevents building test files by esbuild. DTS may still geenrate type files for the tests with only { } as file content*/
declare const rdiPlugin: (options?: RDIPluginOptions) => Plugin;

export { type RDIPluginOptions, rdiPlugin };
