import type { AstroIntegration } from "astro"; export interface AstroConsentOptions { siteName?: string; policyUrl?: string; consent?: { days?: number; storageKey?: string; }; categories?: { essential?: boolean; analytics?: boolean; marketing?: boolean; }; } export default function astroConsent(options?: AstroConsentOptions): AstroIntegration;