import type ExcludeList from '#src/exclude_list';
import { type XmlStringCleanerInterface } from '#src/types';
export default class XmlStringCleaners implements XmlStringCleanerInterface {
    private readonly cleaners;
    constructor(...cleaners: XmlStringCleanerInterface[]);
    static createDefault(): XmlStringCleaners;
    clean(xml: string): string;
    withOutCleaners(excludeList: ExcludeList): XmlStringCleaners;
}
