import { StandardProps } from "../@types/common"; import { IFeedbackBtnProps } from "./feedbackBtn"; import React, { ReactNode } from 'react'; type TFeedbackPopoverDataProps = { id: string; logo: string; title: ReactNode | string; subTitle: ReactNode | string; info: ReactNode; extra: ReactNode; content: ReactNode; componentWrapper: ReactNode; href: string; onClick: () => void; }; export interface IFeedbackPopoverProps extends StandardProps { onClose?: () => void; popoverData?: (defaultData: Partial[]) => Partial[]; } declare const FeedbackPopover: React.FC; export default FeedbackPopover;