import { UnenvPluginContext, UnenvPluginOptions, UnenvPluginResolvedConfig, UnenvPluginUserConfig } from "./types/plugin.cjs"; import "./types/index.cjs"; import { Plugin } from "powerlines"; //#region src/index.d.ts declare module "powerlines" { interface Config { unenv?: UnenvPluginOptions; } } /** * The unenv plugin for Powerlines. * * @see https://unjs.dev/packages/unenv * * @param options - The unenv plugin user configuration options. * @returns A Powerlines plugin to transform source code to be platform agnostic using unenv. */ declare const plugin: (options?: UnenvPluginOptions) => Plugin; //#endregion export { type UnenvPluginContext, type UnenvPluginOptions, type UnenvPluginResolvedConfig, type UnenvPluginUserConfig, plugin }; //# sourceMappingURL=index.d.cts.map