export interface IPinyinOptions { /** 分隔符 */ sep?: string; /** 只返回拼音结果 */ onlyPinyinResult?: boolean; } declare function pinyin(str: string, options?: IPinyinOptions): string; declare function pinyin(str: string[], options?: IPinyinOptions): string[]; export { pinyin }; //# sourceMappingURL=pinyin.d.ts.map