import React from "react"; interface FeedbackWidgetTextProps { positiveFeedbackUrl: string; positiveFeedbackHandle?: () => void; negativeFeedbackUrl: string; negativeFeedbackHandle?: () => void; } export declare const FeedbackWidgetText: React.FunctionComponent; export {};