UNPKG

@automattic/agenttic-ui

Version:

UI components for the Agenttic framework

11 lines 376 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; } export declare const Suggestions: React.FC<SuggestionsProps>; //# sourceMappingURL=Suggestions.d.ts.map