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