import { GetOrderByPaymentIdRequest, OrderService, OrderServiceOptions } from '../types/order.type'; import { Order } from '@commercetools/platform-sdk'; /** * This is the default implementation of the OrderService interface. */ export declare class DefaultOrderService implements OrderService { private ctAPI; private logger; constructor(opts: OrderServiceOptions); getOrderByPaymentId(opts: GetOrderByPaymentIdRequest): Promise; }