interface GeneralFunctionsType { fireTrackingEvent: (eventName: string, category: string) => void; } export type optionType = "ContactUs" | "RequestFeature" | "ReportBug" | "GeneralFeedback"; interface FeedbackCardContainerProps { onClose?: () => void; GeneralFunctions: GeneralFunctionsType; handleOptionClick?: (optionType: optionType, questId?: string) => void; setCardHovered?: React.Dispatch>; cardHovered?: boolean[]; questIds?: string[]; title?: string; sectionConfig?: any; } declare const FeedbackCardContainer: React.FC; export default FeedbackCardContainer;