import { OnInit, OnDestroy } from '@angular/core'; import { RoutingService, Order, Address, AuthService, PaymentDetails, DeliveryMode, Consignment, OrderEntry, UserService } from '@spartacus/core'; import { Observable, Subscription } from 'rxjs'; import { Card } from '../../../ui/components/card/card.component'; export declare class OrderDetailsComponent implements OnInit, OnDestroy { private authService; private userService; private routingService; constructor(authService: AuthService, userService: UserService, routingService: RoutingService); order$: Observable; subscription: Subscription; ngOnInit(): void; getAddressCardContent(address: Address): Card; getBillingAddressCardContent(billingAddress: Address): Card; getPaymentCardContent(payment: PaymentDetails): Card; getShippingMethodCardContent(shipping: DeliveryMode): Card; getConsignmentProducts(consignment: Consignment): OrderEntry[]; ngOnDestroy(): void; }