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