import { type PreactPluginOptions as VitePreactPluginOptions } from '@preact/preset-vite'; import type { AstroIntegration, AstroRenderer } from 'astro'; export declare const getContainerRenderer: () => AstroRenderer; export interface Options extends Pick { compat?: boolean; devtools?: boolean; } export default function ({ include, exclude, compat, devtools }?: Options): AstroIntegration;