import { IOrder } from '../../order';
export interface IBillingOrder extends IOrder {
    billingPaymentId: string;
}
