type TReplacedVowelsRes = { input: string; mutated: string; }; type TOutput = TReplacedVowelsRes; declare function replaceVowelsWithCharacter(str: string, character: string): TOutput; export type { TReplacedVowelsRes }; export { replaceVowelsWithCharacter }; //# sourceMappingURL=index.d.ts.map