UNPKG

alinea

Version:
11 lines (10 loc) 420 B
import type { Shape } from 'alinea/core/Shape'; import type { ComponentType } from 'react'; import type { FieldsDiffProps } from './FieldsDiff.js'; export type FieldDiffProps = { FieldsDiff: ComponentType<FieldsDiffProps>; shape: Shape; valueA: any; valueB: any; }; export declare function FieldDiff({ FieldsDiff, shape, valueA, valueB }: FieldDiffProps): import("react/jsx-runtime").JSX.Element | null;