import { Model } from 'sequelize-typescript';
import { StockInventory } from './stock-inventory.entity';
import { StockMaterialInfo } from './stock-material-info.entity';
export declare class StockMaterial extends Model {
    MaterialId: string;
    InventoryId: string;
    Material: string;
    Type: string;
    IsMainYN: string;
    UpdatedById: string;
    UpdatedAt: Date;
    CreatedById: string;
    CreatedAt: Date;
    StockInventory: StockInventory;
    StockMaterialInfo: StockMaterialInfo[];
}
