@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.
7 lines (6 loc) • 329 B
TypeScript
import { NodeProps } from "@xyflow/react";
import { ComponentType } from "react";
import { ResultViewProps } from "@elastic/react-search-ui-views";
export declare function ResultViewWrapper({ resultView: ResultView, id }: NodeProps & {
resultView: ComponentType<ResultViewProps>;
}): import("react/jsx-runtime").JSX.Element;