UNPKG

@servicetitan/assist-ui

Version:

ServiceTitan Atlas UI Components

12 lines 335 B
import { FC } from 'react'; interface SuggestionProps { text: string; onClick: (suggestion: string) => void; } export declare const Suggestion: FC<SuggestionProps>; export declare const SuggestionList: FC<{ suggestions: string[]; onSelect: (text: string) => void; }>; export {}; //# sourceMappingURL=suggestion.d.ts.map