import { type BookingRecord } from "../index.js"; export interface BookingQuickViewSheetProps { bookingId: string | null | undefined; open: boolean; onOpenChange: (open: boolean) => void; /** Wired to the "View full booking" footer button. Receives the booking * so the host can route to its detail page. When omitted, the footer * action is suppressed. */ onViewFull?: (booking: BookingRecord) => void; /** Optional locale override; defaults to the active i18n locale. */ locale?: string; } export declare function BookingQuickViewSheet({ bookingId, open, onOpenChange, onViewFull, locale, }: BookingQuickViewSheetProps): import("react").JSX.Element;