import { BaseEntity } from '../database/base.entity';
import { BookingEntity } from './booking.entity';
export declare class BookingSpecialItemEntity extends BaseEntity {
    booking: BookingEntity;
    booking_id: string;
    service_name: string;
    total_price: number;
    date: string | null;
    sort_order: number;
    comments: string | null;
}
