import { BaseDecoder } from '../base/base.decoder.js'; /** * Factory to create the appropriate decoder based on the XML format */ export declare class DecoderFactory { /** * Creates a decoder for the specified XML content * @param xml XML content to decode * @returns Appropriate decoder instance */ static createDecoder(xml: string): BaseDecoder; }