import * as React from "react"; import { type BookingNoteRecord } from "../index.js"; export interface BookingNoteDialogProps { open: boolean; onOpenChange: (open: boolean) => void; bookingId: string; /** When set, the dialog opens in edit mode against this note. */ note?: BookingNoteRecord | null; onSuccess?: () => void; } /** * Add / edit a booking note. Mirrors the supplier-status / traveler * dialog pattern so the activity tab is consistent with the rest of * the booking-detail surface. */ export declare function BookingNoteDialog({ open, onOpenChange, bookingId, note, onSuccess, }: BookingNoteDialogProps): React.JSX.Element;