/**
 * @author Thomas Barnekow
 * @license MIT
 */
import { XNode } from './internal.js';
export declare class XProcessingInstruction extends XNode {
    target: string;
    data: string;
    constructor(target: string, data: string);
    toString(): string;
}
