import { OrderAction } from './orderAction';
export interface ApproveOrders extends OrderAction {
    skipInventoryCheck?: boolean;
}
