UNPKG

@automattic/agenttic-ui

Version:

UI components for the Agenttic framework

13 lines 438 B
import React from 'react'; import type { Suggestion } from '../../types'; export interface SuggestionsProps { className?: string; suggestions?: Suggestion[]; onSubmit?: (message: string) => void; layout?: 'horizontal' | 'vertical'; visible?: boolean; onMouseEnter?: () => void; onMouseLeave?: () => void; } export declare const Suggestions: React.FC<SuggestionsProps>; //# sourceMappingURL=Suggestions.d.ts.map