import { Model } from 'sequelize-typescript';
import { StockInventory } from './stock-inventory.entity';
export declare class StockCost extends Model {
    InventoryId: string;
    Currency: string;
    SalesCost: number;
    StandardCost: number;
    WarehouseAvgCost: number;
    CreatedById: string;
    CreatedAt: Date;
    UpdatedById: string;
    UpdatedAt: Date;
    StockInventory: StockInventory;
}
