import type { BookingTransitionAction } from '../../salesSdk'; /** 预约状态选项配置(颜色与 i18n key) */ export declare const BOOKING_STATUS_OPTIONS: readonly [{ readonly key: "new"; readonly labelKey: "pisell2.sale-detail.status.new"; readonly color: "#91caff"; }, { readonly key: "confirmed"; readonly labelKey: "pisell2.sale-detail.status.confirmed"; readonly color: "#b7eb8f"; }, { readonly key: "arrived"; readonly labelKey: "pisell2.sale-detail.status.arrived"; readonly color: "#d3adf7"; }, { readonly key: "started"; readonly labelKey: "pisell2.sale-detail.status.started"; readonly color: "#fffb8f"; }, { readonly key: "cancelled"; readonly labelKey: "pisell2.sale-detail.status.cancelled"; readonly color: "#bfbfbf"; readonly danger: true; }, { readonly key: "no_show"; readonly labelKey: "pisell2.sale-detail.status.no_show"; readonly color: "#ffa39e"; readonly danger: true; }, { readonly key: "completed"; readonly labelKey: "pisell2.sale-detail.status.completed"; readonly color: "#ffd591"; }]; export declare const QUANTITY_ESCAPE_DOM = ".pisell-number-selector-popover, .numeric-stepper-keyboard-popover, .numeric-stepper-keyboard-modal"; export declare const STATUS_TRANSITION_ACTIONS: Partial>; export declare const getBookingScheduleEventId: (item: any) => any; export declare const getBookingCurrentStatus: (item: any) => string; export declare const getAllowedBookingNextStatuses: (currentStatus: string) => string[]; export declare const getBookingQuantity: (item: any) => any; export declare const getCartLineKey: (item: any) => string;