import * as React from 'react'; import type { Inline } from '../../../json-crdt-extensions/peritext/block/Inline'; export interface InlineViewProps { inline: Inline; } /** @todo Add ability to compute `.hash` for {@link Inline} nodes and use for memoization. */ export declare const InlineView: React.FC;