@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
10 lines (9 loc) • 304 B
TypeScript
import React from 'react';
import { SearchSeed } from '../../types';
interface BookPackagingEntryProps {
activeSearchSeed: SearchSeed | null;
isLoading: boolean;
isConfirmationPage?: boolean;
}
declare const BookPackagingEntry: React.FC<BookPackagingEntryProps>;
export default BookPackagingEntry;