UNPKG

@kit-data-manager/react-search-component

Version:

All-in-one component for rendering an elastic search UI for searching anything. Built-in support for visualizing related items in a graph and resolving unique identifiers.

9 lines (8 loc) 382 B
import { ComponentType, PropsWithChildren } from "react"; import { NodeTypes } from "@xyflow/react"; import { ResultViewProps } from "@elastic/react-search-ui-views"; export declare function RelationsGraphProvider(props: PropsWithChildren<{ resultView: ComponentType<ResultViewProps>; dark?: boolean; nodeTypes?: NodeTypes; }>): import("react/jsx-runtime").JSX.Element;