import { StockLocation } from "../../../enums/stock-location.enum";
export declare class TransferStockDto {
    quantity: number;
    from: StockLocation;
    to: StockLocation;
}
