import { BaseModel } from "./Base";
import { Payment } from "./Payment";
import { Vehicle } from "./Vehicle";
export declare class VehicleOrder extends BaseModel {
    userId: string;
    vehicleId: string;
    paymentId: string;
    orderAmount: number;
    reservationComment: string;
    cancellationComment: string;
    status: string;
    vehicle: Vehicle;
    payment: Payment;
}
