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;