import { ArenaMediatorInterface, ArenaNodeText, ArenaOptionsWithText, ArenaTextInterface, TextProcessor } from '../interfaces'; import { AbstractArena } from './AbstractArena'; export declare class ArenaText extends AbstractArena implements ArenaTextInterface { readonly hasParent: true; readonly hasChildren: false; readonly hasText: true; readonly inline: false; readonly single: false; readonly nextArena: ArenaTextInterface | ArenaMediatorInterface | undefined; protected getPlainProcessor: TextProcessor | undefined; constructor(options: ArenaOptionsWithText); getPlain(text: string, node: ArenaNodeText): string; }