import { TravelProduct } from './TravelProduct'; import { TravelProductProperties } from './TravelProduct'; export declare class Car extends TravelProduct { /** * Location where the automobile will be picked up. */ pickUpLocation: string; /** * Location at which the automobile will be returned. */ dropOffLocation: string; /** * Local date and time the automobile will be picked-up, in ISO-8601 date and time format `yyyy-MM-ddTHH:mm:ss.SSSZ`. */ pickupTime: Date; /** * Local date and time the automobile will be returned, in ISO-8601 date and time format `yyyy-MM-ddTHH:mm:ss.SSSZ`. */ returnTime: Date; readonly type = "CAR"; constructor(car: CarProperties); } export interface CarProperties extends TravelProductProperties { pickUpLocation: string; dropOffLocation: string; pickupTime: Date; returnTime: Date; }