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.

10 lines 369 B
import React from 'react'; import { FeedbackConfig, FeedbackSubmission } from '../types'; interface FeedbackFormProps { onSubmit: (data: FeedbackSubmission) => Promise<void>; config: FeedbackConfig; isLoading?: boolean; } export declare const FeedbackForm: React.FC<FeedbackFormProps>; export default FeedbackForm; //# sourceMappingURL=FeedbackForm.d.ts.map