import React from 'react'; import { WithTranslation, WithTranslationProps } from 'react-i18next'; import { PopperPosition } from '../../hooks'; import { FeedbackSendData, Lang } from '../../models'; import './Feedback.scss'; export declare enum FeedbackView { Wide = "wide", Regular = "regular" } export interface FeedbackProps { lang: Lang; singlePage?: boolean; isLiked?: boolean; isDisliked?: boolean; dislikeVariants?: string[]; isVerticalView?: boolean; onSendFeedback?: (data: FeedbackSendData) => void; view?: FeedbackView; classNameControl?: string; popupPosition?: PopperPosition; } declare const _default: React.ComponentType & WithTranslationProps & { children?: React.ReactNode; }, WithTranslationProps>, keyof WithTranslation> & WithTranslationProps>; export default _default;