import { RuntimeComponent, RuntimeScene } from '@easytwin/runtime'; import * as React from 'react'; export type EntitySelectType = { id: string; path?: string; }; export type FilterFunction = (entity: RuntimeComponent) => boolean; interface EntitySelectProps { scene: RuntimeScene; disabled?: boolean; showSearch?: boolean; placeHolder?: string; value: EntitySelectType; filter?: string[] | FilterFunction; onBlur: (value: EntitySelectType) => void; } export declare function EntitySelect(props: EntitySelectProps): React.JSX.Element; export {};