import { PluginOptions } from '@analogjs/vite-plugin-angular'; import type { AstroIntegration } from 'astro'; interface AngularOptions { vite?: PluginOptions; /** * Enable stricter rendering, which ensures Angular style tags are added to the document head instead of next to the * component in the body. * * Enabling this option disables astro's streaming under SSR. */ strictStylePlacement?: boolean; /** * Use Angular's `provideClientHydration` to hydrate components. */ useAngularHydration?: boolean; } export default function (options?: AngularOptions): AstroIntegration; export {}; //# sourceMappingURL=index.d.ts.map