import type { useDistributionUiMessagesOrDefault } from "../i18n/index.js"; import type { VoyantFetcher } from "../index.js"; export declare function DeliveriesDrawer({ bookingId, bookingItemId, client, onClose, messages, }: { bookingId: string | null; bookingItemId?: string | null; client: { baseUrl: string; fetcher: VoyantFetcher; }; onClose: () => void; messages: ReturnType["channelSync"]; }): import("react").JSX.Element;