/**
 * Manages attribute names used during HTML parsing process.
 * These attributes serve as temporary markers for pattern matching and processing.
 */
export declare class ParserAttributes {
    /**
     * Base prefix used for all parsing-related attributes.
     */
    static readonly tag: "op";
    /**
     * Temporary attribute marker applied to elements where patterns are detected.
     * This attribute must be removed after fragment processing is complete.
     */
    static readonly PATTERN: "data-op-pattern";
}
