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<PaymentSourceDto>;
    getPaymentSource(paymentSourceId: string): Promise<PaymentSourceDto>;
    deleteById(paymentSourceId: string): Promise<void>;
}
