import { BaseValidator } from '../base/base.validator.js'; /** * Factory to create the appropriate validator based on the XML format */ export declare class ValidatorFactory { /** * Creates a validator for the specified XML content * @param xml XML content to validate * @returns Appropriate validator instance */ static createValidator(xml: string): BaseValidator; }