@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 • 476 B
TypeScript
import React, { ReactNode } from 'react';
import { FeedbackConfig, FeedbackContextType } from '../types';
declare const FeedbackContext: React.Context<FeedbackContextType | null>;
interface FeedbackProviderProps {
config: FeedbackConfig;
children: ReactNode;
}
export declare const FeedbackProvider: React.FC<FeedbackProviderProps>;
export declare const useFeedback: () => FeedbackContextType;
export { FeedbackContext };
//# sourceMappingURL=FeedbackProvider.d.ts.map