import { Shape } from 'alinea/core';
export type FieldDiffProps = {
    shape: Shape;
    valueA: any;
    valueB: any;
};
export declare function FieldDiff({ shape, valueA, valueB }: FieldDiffProps): import("react/jsx-runtime").JSX.Element | null;
