import type { AcurisClient } from "../client.js"; import type { PhoneMatchOptions, PhoneMatchResult } from "../types.js"; /** * Offline de-duplication: decide whether two differently-formatted phone * numbers refer to the same line (e.g. "+1 415 555 2671" vs "(415) 555-2671"). * Charges 1 phone_credit. `same_number` is true for exact / nsn matches — the * field most callers collapse duplicates on. */ export declare function phoneMatch(client: AcurisClient, a: string, b: string, options?: PhoneMatchOptions): Promise; //# sourceMappingURL=phoneMatch.d.ts.map