import { PaymentSourceDto } from '../models/dto/payment-dto.model'; import { BillingPaymentSourceService } from '../services/billing-payment-source.service'; export declare class BillingPaymentSourceController { private readonly billingPaymentSourceService; constructor(billingPaymentSourceService: BillingPaymentSourceService); create(paymentSourceDto: PaymentSourceDto): Promise; getPaymentSource(paymentSourceId: string): Promise; deleteById(paymentSourceId: string): Promise; }