import * as React from "react"; export type BookingItemResourceKind = "product" | "availabilitySlot"; export interface BookingItemListProps { bookingId: string; readOnly?: boolean; /** * Open a linked resource (product / availability slot) in the host app. * When omitted, the snapshot sheet renders the names as plain text * instead of clickable links. */ onResourceOpen?: (kind: BookingItemResourceKind, id: string) => void; } export declare function BookingItemList({ bookingId, readOnly, onResourceOpen, }: BookingItemListProps): React.JSX.Element;