@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
26 lines (25 loc) • 735 B
TypeScript
import React from 'react';
export interface SharedConfirmationTranslations {
MAIL_SUBJECT: string;
TITLE_TEXT_OPTION: string;
TITLE_TEXT_OFFER: string;
TITLE_TEXT_BOOKING: string;
MESSAGE_TEXT1: string;
MESSAGE_TEXT2_OFFER: string;
MESSAGE_TEXT2_BOOKING: string;
QUESTIONS_TEXT1: string;
QUESTIONS_TEXT2: string;
QUESTIONS_TEXT3: string;
QUESTIONS_ALT: string;
}
export interface SharedConfirmationProps {
bookingNumber?: string;
isOption?: boolean;
isOffer?: boolean;
translations: SharedConfirmationTranslations;
companyContactPhone?: string;
companyContactEmail?: string;
homeUrl?: string;
}
declare const SharedConfirmation: React.FC<SharedConfirmationProps>;
export default SharedConfirmation;