import { TemplateResult } from 'lit'; import { ArenaAttribute, ArenaInlineInterface, ArenaNodeInline, NodeAttributes } from '../interfaces'; export declare class InlineNode implements ArenaNodeInline { arena: ArenaInlineInterface; readonly hasParent: false; readonly hasChildren: false; readonly hasText: false; readonly inline: true; readonly single: false; protected attributes: NodeAttributes; constructor(arena: ArenaInlineInterface); getTemplate(): TemplateResult | string; protected getAttributesString(): string; getTags(): [string, string]; getDataHtml(): string; setAttribute(name: string, value: ArenaAttribute): void; getAttribute(name: string): ArenaAttribute; getAttributes(): NodeAttributes; clone(): ArenaNodeInline; }