@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
21 lines (20 loc) • 650 B
TypeScript
import React from 'react';
import { PortalQsmType } from '@qite/tide-client';
import { FlyInType, SearchSeed, SortByType } from '../../../search-results/types';
type FlyInProps = {
srpType: PortalQsmType;
isOpen: boolean;
setIsOpen: (open: boolean) => void;
className?: string;
onPanelRef?: (el: HTMLDivElement | null) => void;
detailsLoading: boolean;
handleConfirm?: () => void;
flyInType?: FlyInType | null;
isPackageEditFlow?: boolean;
sortByTypes?: SortByType[];
activeSearchSeed?: SearchSeed | null;
toggleFilters?: () => void;
filtersOpen: boolean;
};
declare const FlyIn: React.FC<FlyInProps>;
export default FlyIn;