import { RichTextShape, TextDoc } from 'alinea/core';
export type RichTextDiffProps = {
    shape: RichTextShape<any>;
    valueA: TextDoc<any>;
    valueB: TextDoc<any>;
};
export declare function RichTextDiff({ shape, valueA, valueB }: RichTextDiffProps): import("react/jsx-runtime").JSX.Element;
