import { Model } from 'sequelize-typescript';
import { StockProfile } from './stock-profile.entity';
export declare class StockProfileMaterial extends Model {
    MaterialId: string;
    ProfileId: string;
    Material: string;
    Type: string;
    IsMainYN: string;
    CreatedById: string;
    CreatedAt: Date;
    UpdatedById: string;
    UpdatedAt: Date;
    StockProfile: StockProfile;
}
