import { Block } from './Block'; import type { Path } from '@jsonjoy.com/json-pointer'; import type { PeritextMlElement } from './types'; export interface IBlock { readonly path: Path; readonly attr?: Attr; readonly parent: IBlock | null; } export declare class LeafBlock extends Block { text(): string; isLeaf(): boolean; toJson(): PeritextMlElement; toStringName(): string; toString(tab?: string): string; }