import { BaseEntity } from '../database/base.entity';
import { DestinationEntity } from './destination.entity';
import { TransportServiceEntity } from './transport-service.entity';
import { CurrencyEntity } from './currency.entity';
export declare class TransportPricingEntity extends BaseEntity {
    destination: DestinationEntity;
    destination_id: string;
    transport_service: TransportServiceEntity;
    transport_service_id: string;
    category: string;
    cab_type: string;
    currency: CurrencyEntity;
    currency_id: string;
    default_price: number | null;
    season_1_price: number | null;
    season_2_price: number | null;
    season_3_price: number | null;
    season_4_price: number | null;
    season_5_price: number | null;
}
