import type { Matcher } from '../v3/types';
import { XmlNode } from './xmlNode';
export declare class XmlText extends XmlNode {
    content: string;
    matcher?: Matcher<string> | undefined;
    constructor(content: string, matcher?: Matcher<string> | undefined);
}
