// index.d.ts

export default function toPinyinTones(input: string): string;

declare function v2(input: string): string;
declare function markSinglePinyinVowel(input: string): string;

export {
    v2,
    markSinglePinyinVowel,
}