import { AnyComponentSchema } from '@open-formulieren/types'; import { GetRegistryEntry } from '../types'; import { JSONObject } from '../../types'; export interface ItemPreviewProps { components: AnyComponentSchema[]; keyPrefix: string; values: JSONObject; componentsMap: Record; getRegistryEntry: GetRegistryEntry; } /** * Render a non-editable preview for the components inside the edit grid, showing a * preview of the provided values for each. * * For the particularities of the `DataList` usage, see * https://nl-design-system.github.io/utrecht/storybook/?path=/docs/react_react-data-list--docs */ declare const ItemPreview: React.FC; export default ItemPreview;