import { type Attr } from '@nodecfdi/cfdi-core';
/**
 * This provides methods used for xml attributes handling. It´s not meant to
 * be used directly.
 */
export default class XmlAttributeMethods {
    protected attributeRemove(attribute: Attr): void;
    protected attributeSetValueOrRemoveIfEmpty(attribute: Attr, value: string): void;
}
