import type { AstroIntegration } from "astro"; export interface IndexNowOptions { key?: string; siteUrl?: string; enabled?: boolean; cacheDir?: string; buildOutputDir?: string; dryRun?: boolean; logMode?: "quiet" | "normal" | "verbose"; submissionMode?: "changed" | "all"; batchSize?: number; retryAttempts?: number; retryBaseDelayMs?: number; retryMaxDelayMs?: number; } export default function indexNow(options?: IndexNowOptions): AstroIntegration; //# sourceMappingURL=index.d.ts.map