import type * as I from "./index"; import Resource from "./resource"; export default class Cards extends Resource { resource: string; constructor(payjp: any); list(customerId: string, query?: I.ListOptions): Promise>; create(customerId: string, query?: object): Promise; retrieve(customerId: string, id: string): Promise; update(customerId: string, id: string, query?: object): Promise; delete(customerId: string, id: string): Promise; }