import BaseClass from "../utils/BaseClass"; import { CustomerCollection } from './Customer'; import { SingleRelationship } from "../typings/Library"; import { PaymentSourceCollection } from './PaymentSource'; export declare class CustomerPaymentSourceCollection extends BaseClass { static className: string; name: string; id: string; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; paymentSourceId: string; paymentSourceType: string; customer: () => SingleRelationship; paymentSource: () => SingleRelationship; static define(): void; } declare const CustomerPaymentSource: import("../typings/Library").BaseResource; export default CustomerPaymentSource;