UNPKG

@redocly/theme

Version:

Shared UI components lib

11 lines (10 loc) 422 B
import type { JSX } from 'react'; import { FeedbackType } from '../../core/types'; export type SearchAiActionButtonsProps = { content: string; className?: string; feedback?: FeedbackType; onFeedback: (feedback: FeedbackType) => void; disabled?: boolean; }; export declare function SearchAiActionButtons({ content, className, feedback, onFeedback, disabled, }: SearchAiActionButtonsProps): JSX.Element;