import { ChangeEvent, Dispatch, SetStateAction } from 'react'; import './index.css'; export interface FeedbackFormClasses { feedbackSection?: string; feedbackIconSection?: string; feedbackColumn?: string; cancelFeedback?: string; checkBoxLabel?: string; feedbackChoiceSection?: string; formLabel?: string; feedbackChoices?: string; } export interface FeedbackFormProps { classes?: FeedbackFormClasses; setShowModal?: (value: boolean) => void; onChoiceChangeHandler: (event: ChangeEvent) => void; setUserComment: Dispatch>; userComment: string; showChoice: boolean; userCommentHandler: (event: ChangeEvent) => void; } export declare const FeedbackForm: ({ classes, onChoiceChangeHandler, userComment, userCommentHandler, showChoice, }: FeedbackFormProps) => JSX.Element;