import { Model } from 'sequelize-typescript';
import { ProductModel } from './product.entity';
export declare class ProductCertificateModel extends Model {
    CertificateId: string;
    ProductId: string;
    Name: string;
    Description: string;
    CreatedAt: Date;
    UpdatedAt: Date;
    Product: ProductModel;
}
