import { Model } from 'sequelize-typescript';
import { StockGroup } from './stock-group.entity';
import { StockInventory } from './stock-inventory.entity';
export declare class StockInventoryGroup extends Model {
    Code: string;
    InventoryId: string;
    StockGroup: StockGroup;
    StockInventory: StockInventory;
}
