import { type BookingRecord } from "../index.js"; export interface BookingBillingDialogProps { open: boolean; onOpenChange: (open: boolean) => void; booking: BookingRecord; onSuccess?: () => void; } /** * Edit the billing-contact snapshot on a booking. The snapshot is the * source of truth for the detail-page billing card and for downstream * invoice / document generation — when an operator's data correction * needs to land on documents without modifying the CRM person record, * this is the dialog they reach for. */ export declare function BookingBillingDialog({ open, onOpenChange, booking, onSuccess, }: BookingBillingDialogProps): import("react").JSX.Element;