import React from 'react'; import { PatchPreview } from '../context/diff-agent-context'; import { JsonSchemaPatch } from '../../../services/diff/differs/json-schema-json-diff/plugins/plugin-types'; declare type Props = { observation: string; children: React.ReactElement; patches: { loading: boolean; previews: PatchPreview[]; }; onAnswer: (selectedPatch: JsonSchemaPatch) => void; }; export declare function ChangeView(props: Props): JSX.Element; export {}; //# sourceMappingURL=change.d.ts.map