export declare class TripAddOnDto {
    id?: number;
    addons_id: number;
    price: string;
    quantity: string;
    total_price: string;
}
export declare class TripAddOnsPricingDto {
    trip_id: number;
    addons: TripAddOnDto[];
}
