export class PhoneNumbers extends Client { constructor(options: any); jsonAPINames: string[]; search(searchTerm: any): Promise; list(): Promise; create(phone_number: any): Promise; update(phoneID: any, phone_number: any): Promise; show(phoneID: any): Promise; delete(phoneID: any): Promise; } import { Client } from "../client";