import { RepositoryBase, IRepositoryBase } from '@tomei/general';
import { ProductCollectionsModel } from '../../entities/product-collection.entity';
export declare class ProductProductCollectionRepository extends RepositoryBase<ProductCollectionsModel> implements IRepositoryBase<ProductCollectionsModel> {
    constructor();
    findAndCountAll(options?: any): Promise<any>;
    delete(ProductCollectionId: string, dbTransaction?: any): Promise<void>;
}
