UNPKG

@inov-ai/feedback-widget

Version:

Modern React feedback widget with surveys, analytics, and Next.js 15 support. Collect user feedback and run surveys in your SaaS applications.

11 lines 375 B
import React from 'react'; import { Survey, FeedbackConfig } from '../types'; interface SurveyFormProps { survey: Survey; onSubmit: (surveyId: number, answers: any[]) => Promise<void>; config: FeedbackConfig; isLoading?: boolean; } export declare const SurveyForm: React.FC<SurveyFormProps>; export default SurveyForm; //# sourceMappingURL=SurveyForm.d.ts.map