import { Plugin } from 'esbuild'; export interface PluginOptions { /** * Custom path to `tsconfig.json` */ tsconfigPath?: string; /** * Custom path to output declaration files */ outputPath?: string; /** * Should plugin output debug logs to console */ debug?: boolean; } export declare const dTSPathAliasPlugin: (pluginOptions?: PluginOptions) => Plugin;