import { default as React } from 'react'; interface FeedbackProps { heading?: string; subHeading?: string; userId?: string; token?: string; questId?: string; btnColor?: string; bgColor?: string; btnTextColor?: string; textColor?: string; font?: string; supportUrl?: string; onSubmit?: () => void; delay?: number; isInline?: boolean; crossLogoForInput?: boolean; onCancel?: Function; uniqueEmailId?: string; uniqueUserId?: string; enableVariation?: boolean; } declare const Feedback: React.FC; export default Feedback;