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