export declare function confirmReservation(id: string, companyId: string): Promise; export declare function checkinReservation(id: string, companyId: string, mileage?: number): Promise; export declare function checkoutReservation(id: string, companyId: string, mileage?: number): Promise; export declare function closeReservation(id: string, companyId: string, closedBy: string): Promise; export declare function extendReservation(id: string, companyId: string, newEndDate: Date, reason: string): Promise; export declare function cancelReservation(id: string, companyId: string, reason?: string): Promise; //# sourceMappingURL=reservation.lifecycle.service.d.ts.map