//! gulp-w3c-html-validator v5.3.0 ~~ https://github.com/center-key/gulp-w3c-html-validator ~~ MIT License
export type AnalyzerOptions = ValidatorOptions;
export type ReporterSettings = {
maxMessageLen: number;
throwErrors: boolean;
};
export type ReporterOptions = Partial;
import { Transform } from 'stream';
import { ValidatorOptions } from 'w3c-html-validator';
declare const htmlValidator: {
analyzer(options: AnalyzerOptions): Transform;
reporter(options: ReporterOptions): Transform;
};
export { htmlValidator };