import { Entity, EntitySchema, EntitySchemaResolver } from "../../models"; export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"property" | "valuePreview" | "iconCell" | "titleCell">; /** * @category Components */ export interface EntityPreviewProps { entity: Entity; schema: EntitySchema | EntitySchemaResolver; path: string; } /** * Use this component to render a preview of a property values * @param entity * @param schema * @param path * @constructor * @category Components */ export declare function EntityPreview({ entity, schema: inputSchema, path }: EntityPreviewProps): import("@emotion/react/jsx-runtime").JSX.Element; export default EntityPreview;