import Cards from "./cards"; import type * as I from "./index"; import Resource from "./resource"; declare class CustomerSubscriptions extends Resource { resource: string; constructor(payjp: any); list(id: string, query?: I.CustomerSubscriptionListOptions): Promise>; retrieve(id: string, subscriptionId: string): Promise; } export default class Customers extends Resource { resource: string; cards: Cards; subscriptions: CustomerSubscriptions; constructor(payjp: any); list(query?: I.ListOptions): Promise>; create(query?: I.CustomerCreationOptions): Promise; retrieve(id: string): Promise; update(id: string, query?: I.CustomerUpdateOptions): Promise; delete(id: string): Promise; } export {};