import { BaseEntity } from '../database/base.entity';
import { DestinationEntity } from './destination.entity';
export declare class SeasonEntity extends BaseEntity {
    destination: DestinationEntity;
    destination_id: string;
    name: string;
    start_date: string | null;
    end_date: string | null;
    durations: {
        start: string;
        end: string;
    }[] | null;
    sort_order: number;
    is_active: boolean;
    is_system: boolean;
}
