UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

10 lines (9 loc) 415 B
import React from "react"; import { PropertyPreviewProps } from "../PropertyPreviewProps"; /** * @group Preview components */ export declare function MapPropertyPreview<T extends Record<string, any> = Record<string, any>>({ propertyKey, value, property, size }: PropertyPreviewProps<T>): React.JSX.Element | null; export declare function KeyValuePreview({ value }: { value: any; }): React.JSX.Element | null;