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