/** * Imported Phone Numbers namespace — create only. */ import type { HttpClient } from '../HttpClient.js'; import { BaseResource } from '../base/BaseResource.js'; /** * Import externally-hosted phone numbers. * * Access via `client.importedNumbers.*`. */ export declare class ImportedNumbersResource extends BaseResource { constructor(http: HttpClient); /** * Import an externally-hosted phone number into this project. * * @param body - Import payload specifying the number, carrier details, * and any routing configuration required by the platform. * @returns The newly-imported phone-number record. * @throws {RestError} On any non-2xx HTTP response. */ create(body: any): Promise; }