import { Model } from 'sequelize-typescript';
import { StoreModel } from './store.entity';
import { ProductModel } from './product.entity';
export declare class StoreProductModel extends Model {
    StoreProductId: string;
    ProductId: string;
    StoreId: string;
    Status: string;
    PriceFormula: string;
    AddedById: string;
    AddedAt: Date;
    RemovedById: string;
    RemovedAt: Date;
    Product: ProductModel;
    Store: StoreModel;
    ProductVariant: ProductModel;
}
