import type { ComponentPropsWithoutRef } from 'react'; export type BookingCardVariant = 'cover' | 'split'; export type BookingCardProps = Omit, 'children'> & { destination: string; travelClass: string; price: number | string; airportCode: string; imageUrl: string; imageAlt?: string; variant?: BookingCardVariant; currency?: string; locale?: string; actionLabel?: string; favoriteLabel?: string; isFavorite?: boolean; onSearch?: VoidFunction; onFavorite?: VoidFunction; }; export declare const BookingCard: ({ destination, travelClass, price, airportCode, imageUrl, imageAlt, variant, currency, locale, actionLabel, favoriteLabel, isFavorite, onSearch, onFavorite, className, ...props }: BookingCardProps) => import("react/jsx-runtime").JSX.Element;