alinea
Version:
Headless git-based CMS
11 lines (10 loc) • 420 B
TypeScript
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;