import { FC } from 'react'; export interface RatingThankYouPageProps { translations?: { thanksText?: string; homeButton?: string; backToOverviewButton?: string; }; handleClick?: () => void; isCustomerLogin?: boolean; } declare const RatingThankYouPage: FC; export default RatingThankYouPage;