import { Model } from 'sequelize-typescript';
import { ProductModel } from './product.entity';
import { SettingsCollectionModel } from './settings-collection.entity';
export declare class ProductCollectionsModel extends Model {
    ProductCollectionId: string;
    ProductId: string;
    Code: string;
    Product: ProductModel;
    ProductCollection: SettingsCollectionModel;
    CreatedAt: Date;
    UpdatedAt: Date;
}
