import type { AstroIntegration } from "astro"; export interface AstroHtmlValidateOptions { /** * File globs to validate, relative to the Astro output directory. * @default all generated `.html` files */ patterns?: string | string[]; /** * html-validate formatter name. * @default "text" */ formatter?: string; /** * Whether warnings should fail the build. * @default false */ failOnWarning?: boolean; /** * Allow builds to continue when no files matched the pattern. * @default true */ allowEmpty?: boolean; } /** * Validate generated Astro HTML using html-validate after each build. * * html-validate configuration is auto-discovered from your project * (for example `.htmlvalidate.json`, `.htmlvalidate.cjs`, etc.). */ export default function astroHtmlValidateIntegration(options?: AstroHtmlValidateOptions): AstroIntegration; //# sourceMappingURL=index.d.ts.map