import { Plugin } from 'esbuild'; import { IncludePattern } from 'i18next-utilities-core'; type Options = { /** * Glob pattern to include files for bundling. Defaults to `['**\/*.json', '**\/*.yml', '**\/*.yaml']`. */ include?: IncludePattern[]; /** * Namespace resolution strategy. Defaults to `'none'`. */ namespaceResolution?: 'basename' | 'relativePath'; /** * Locale top-level directory paths. Ordered from least to most specific. */ paths: string[]; }; declare const i18nextPlugin: (options: Options) => Plugin; export { i18nextPlugin };