import React from 'react'; import type { ComponentControl } from '../core'; import type { SDKComponentProps } from './types'; export declare type EntityProps = { entityId: string; extraControls: ComponentControl[]; globalProps?: (props: SDKComponentProps) => T; }; export declare const BaseEntity: React.MemoExoticComponent<(({ entityId, extraControls: entityControls, render, globalProps, }: EntityProps> & { render: (renderComponent: () => JSX.Element, props: SDKComponentProps) => void; }) => JSX.Element)>; export declare const Entity: React.FC>;