UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

17 lines (16 loc) 402 B
export type SearchResult = { title?: string; url?: string; date?: string; snippet: { pre: string; text: string; post: string; }; }; type Props = { result: SearchResult; className?: string; }; export declare const VuiChatSearchResult: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<HTMLDivElement | null>>; export {};