import { FC } from 'react'; export interface CustomerRatingClosedProps { translations?: { contentTitle?: string; contentText1?: string; contentText2?: string; contentText3?: string; homeButton?: string; backToOverviewButton?: string; }; handleClick?: () => void; isCustomerLogin?: boolean; } declare const CustomerRatingClosed: FC; export default CustomerRatingClosed;