import React from 'react'; import type { ProductCardTypes } from '../types'; import type { LineItemStatusOption, LineItemType } from './types'; interface BookingLineItemProps extends Omit { dataSource: any; type: LineItemType; cartSkuType: 'a2' | 'a5' | 'a9'; relatedProductDataSource?: any; rightActions?: any[]; escapeDom?: string; statusOptions?: LineItemStatusOption[]; statusLoading?: boolean; statusDisabled?: boolean; isShowRelatedProduct?: boolean; onBookingStatusChange?: (status: string, item: any) => void; } declare const BookingLineItem: (props: BookingLineItemProps) => React.JSX.Element | null; export default BookingLineItem;