export declare class CreateSeasonDto {
    destination_id: string;
    name: string;
    start_date?: string;
    end_date?: string;
    durations?: {
        start: string;
        end: string;
    }[];
    sort_order?: number;
    is_active?: boolean;
}
