import React from 'react'; import type { OnSuggestionsFeedbackVoteFn } from '../../utils/types'; export type SuggestionsSearchFeedbackProps = { isActive: boolean; isResponsive?: boolean; onVote?: OnSuggestionsFeedbackVoteFn; }; declare const SuggestionsSearchFeedback: React.FC; export default SuggestionsSearchFeedback;