type TEncryptedVowelRes = { input: string; encrypted: string; }; type TInput = string; type TOutput = TEncryptedVowelRes; declare function encryptAllVowels(arg: TInput): TOutput; export type { TEncryptedVowelRes }; export { encryptAllVowels }; //# sourceMappingURL=index.d.ts.map