import { AstroUserConfig } from "astro"; //#region src/astro.d.ts /** * An Astro plugin that will invoke the Powerlines API hooks during the build process. * * @see https://docs.astro.build/en/guides/integrations-guide/#creating-an-integration * * @example * ```js * // astro.config.mjs * import { defineConfig } from "astro/config"; * import powerlines from "@powerlines/unplugin/astro"; * * export default defineConfig({ * integrations: [powerlines({ name: "example-app", ... })] * }); * * ``` * * @param options - The Astro options to merge with the Powerlines configuration. * @returns The merged Astro configuration options. */ declare function withPlugin(options: AstroUserConfig): AstroUserConfig; //#endregion export { withPlugin as default, withPlugin }; //# sourceMappingURL=astro.d.mts.map