@bothub-chat/ui
Version:
Bothub UI Components
12 lines (11 loc) • 353 B
TypeScript
export type MessageSearchResultsItemType = {
url: string;
name: string;
title: string;
date: string;
content: string;
};
export type MessageSearchResultsProps = {
results: MessageSearchResultsItemType[];
};
export declare const MessageSearchResults: (props: MessageSearchResultsProps) => import("react/jsx-runtime").JSX.Element;