import { Generator, GeneratorOptions } from '@jspm/generator'; import { Plugin } from 'vite'; type PluginOptions = GeneratorOptions & { downloadDeps?: boolean; debug?: boolean; pollyfillProvider?: ((version: string) => string) | string; }; declare let generator: Generator; declare function plugin(pluginOptions?: PluginOptions): Promise; export { plugin as default, generator };