import { BaseEntity } from '../database/base.entity';
import { ActivityEntity } from './activity.entity';
export declare class ActivityTicketEntity extends BaseEntity {
    activity: ActivityEntity;
    activity_id: string;
    name: string;
    internal_ref: string | null;
    time_slot: string | null;
    duration_mins: number | null;
    description: string | null;
    is_active: boolean;
}
