import { BaseEntity } from '../database/base.entity';
import { BookingEntity } from './booking.entity';
import { ActivityEntity } from './activity.entity';
import { ActivityTicketEntity } from './activity-ticket.entity';
import { SupplierEntity } from './supplier.entity';
export declare class BookingActivityItemEntity extends BaseEntity {
    booking: BookingEntity;
    booking_id: string;
    activity: ActivityEntity;
    activity_id: string;
    ticket: ActivityTicketEntity | null;
    ticket_id: string | null;
    age_group: string;
    quantity: number;
    unit_price: number;
    subtotal: number;
    slot: string | null;
    date: string | null;
    sort_order: number;
    notes: string | null;
    supplier: SupplierEntity | null;
    supplier_id: string | null;
    ticket_file_url: string | null;
    assignment_status: string | null;
}
