import { FC, ReactType } from 'react'; import { LinkProps } from '../../index'; export interface RatingPageProps { CustomerFeedbackForm?: ReactType; PartnerFeedbackForm?: ReactType; LinkProps?: LinkProps; translations?: { headerTitle?: string; headerSubtitle?: string; milaflowTitle?: string; milaflowSubTitlePart1?: string; milaflowSubTitlePart2?: string; milaflowSubtitle?: string; milaflowText1?: string; milaflowText2?: string; milaflowText3?: string; dearText?: string; partnerHeaderSubtitle?: string; sendFeedbackMessage?: string; }; isPartner?: boolean; partnerName?: string; milaFlowImages?: { milaflowImageStep1?: string; milaflowImageStep2?: string; milaflowImageStep3?: string; }; EnterprisePartnerName?: string; isSubmitted?: boolean; } declare const RatingPageTemplate: FC; export default RatingPageTemplate;