type TVowelsCount = { input: string; count: Record; }; type TInput = string; type TOutput = TVowelsCount; declare function countAllVowels(arg: TInput): TOutput; export type { TVowelsCount }; export { countAllVowels }; //# sourceMappingURL=index.d.ts.map