import { Plugin } from 'esbuild'; interface AliasPathOptions { alias?: Record; skip?: boolean; cwd?: string; } declare const aliasPath: (options?: AliasPathOptions) => Plugin; export { AliasPathOptions, aliasPath, aliasPath as default };