import { FC, ReactType } from 'react'; import { LinkProps } from '../../index'; export interface ConfirmationPageProps { logoLink?: LinkProps; translations: { title: string; trust: string; subtitle: string; bookingSuccessful: string; touch?: { title: string; text: string; }; servicePerformance?: { title: string; text: string; }; payment?: { title: string; text: 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; createBookingFeedback: (rating: number, feedback: string) => Promise; FormRegister: ReactType; passwordToken: string; } declare const GiftCardConfirmationPage: FC; export default GiftCardConfirmationPage;