import { FC, ReactType } from 'react'; import { LinkProps } from '../../index'; export interface ConfirmationPageProps { logoLink?: LinkProps; translations: { title: string; subtitle: string; bookingSuccessful: string; touch?: { title: string; text: string; }; servicePerformance?: { title: string; text: string; }; payment?: { title: string; text: string; }; appointment: string; calendar: string; feedback?: { title: string; text: string; rating: string; specific: string; send: string; success: string; }; account?: { title: string; text: string; signUp: string; }; home: string; register: string; registerSuccessful: string; close: string; }; isLoggedIn: boolean; servicePackage: { name: string; description: string; duration: string; }; locale: string; bookingData: { serviceDetailsData: { date: Date; isFlexibleCheckbox: boolean; }; serviceLocationData: { street: string; streetNr: string; zip: string; city: string; firstName: string; lastName: string; }; }; createBookingFeedback: (rating: number, feedback: string) => Promise; FormRegister: ReactType; passwordToken: string; } declare const ConfirmationPage: FC; export default ConfirmationPage;