import { Model } from 'sequelize-typescript';
import { StockInventory } from './stock-inventory.entity';
export declare class StockLocation extends Model {
    InventoryId: string;
    LocationCode: string;
    TotalUnits: number;
    TotalUnitsAvailable: number;
    TotalUnitsInCurrentOrder: number;
    TotalUnitsSold: number;
    TotalUnitsReserved: number;
    TotalUnitsTransitInbound: number;
    TotalUnitsTransitOutbound: number;
    TotalUnitsOnConsignment: number;
    TotalUnitsVoid: number;
    StockInventory: StockInventory;
}
