import { Operation } from './Operation';
import { Order } from '../Order';
/** Describes an Operation and the associated Order */
export interface OperationAndOrder {
    /** Upgrade operation */
    operation?: Operation;
    /** Order placed */
    order?: Order;
}
//# sourceMappingURL=OperationAndOrder.d.ts.map