import { ProductWithInventoryModel } from './product-with-inventory.entity';
import { Model } from 'sequelize-typescript';
import { StockProfileModel } from '@tomei/stock';
export declare class ProductJewelleryModel extends Model {
    ProductId: string;
    ProfileId: string;
    Surface: string;
    Uniqueness: string;
    HasCertificateYN: string;
    ProductWithInventory: ProductWithInventoryModel;
    StockProfile: StockProfileModel;
}
