import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { CustomerInstance } from './Customers'; export interface CustomerPaymentSourceAttributes { name: string; customer_token: string; payment_source_token: string; } export interface CustomerPaymentSourceRelationships { customer: CustomerInstance; payment_source: any; } export declare type CustomerPaymentSourceInstance = ConcreteResourceInstance; export declare const CustomerPaymentSourcesConfig: ResourceConfig; export declare const CustomerPaymentSources: Resource; //# sourceMappingURL=CustomerPaymentSources.d.ts.map