import { type BookingSupplierStatusRecord } from "../index.js"; export interface SupplierStatusDialogProps { open: boolean; onOpenChange: (open: boolean) => void; bookingId: string; supplierStatus?: BookingSupplierStatusRecord; onSuccess?: () => void; } export declare function SupplierStatusDialog({ open, onOpenChange, bookingId, supplierStatus, onSuccess, }: SupplierStatusDialogProps): import("react").JSX.Element;