import { IPhonetic } from './base'; export default class Soundex implements IPhonetic { codes: any; constructor(); getPhoneticString(text: string): string; isPhoneticMatch(text1: string, text2: string): boolean; }