type TTotalCountRes = { input: string; total: number; }; type TInput = string; type TOutput = TTotalCountRes; declare function getTotalCountOfVowels(arg: TInput): TOutput; export type { TTotalCountRes }; export { getTotalCountOfVowels }; //# sourceMappingURL=index.d.ts.map