import { ListRow, type ListShape } from 'alinea/core/shape/ListShape';
import type { ComponentType } from 'react';
import type { FieldsDiffProps } from './FieldsDiff.js';
export type ListDiffProps = {
    FieldsDiff: ComponentType<FieldsDiffProps>;
    shape: ListShape<any>;
    valueA: Array<ListRow>;
    valueB: Array<ListRow>;
};
export declare function ListDiff({ FieldsDiff, shape, valueA, valueB }: ListDiffProps): import("react/jsx-runtime").JSX.Element;
