import { type SQL } from "drizzle-orm"; export declare const ACTIVE_BOOKING_STATUSES_FOR_SLOT: readonly ["on_hold", "awaiting_payment", "confirmed", "in_progress", "completed"]; export declare function activeBookingStatusesForSlotSql(): SQL; export declare function isActiveBookingStatusForSlot(status: string): boolean;