import { MovementType } from '../entities/inventory-movement.entity'; export declare class CreateMovementDto { productId: string; movementType: MovementType; quantity: number; unitCost?: number; referenceType?: string; referenceId?: string; notes?: string; } export declare class AdjustStockDto { productId: string; newQuantity: number; reason?: string; } export declare class StockQueryDto { lowStock?: boolean; outOfStock?: boolean; }