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;
