import { PaymentCollection } from "./../models/payment-collection";
import { Repository } from "typeorm";
import { FindConfig } from "../types/common";
export declare class PaymentCollectionRepository extends Repository<PaymentCollection> {
    getPaymentCollectionIdBySessionId(sessionId: string, config?: FindConfig<PaymentCollection>): Promise<PaymentCollection>;
    getPaymentCollectionIdByPaymentId(paymentId: string, config?: FindConfig<PaymentCollection>): Promise<PaymentCollection>;
}
