type TVowelsExtractRes = { input: string; extract: string[]; }; type TInput = string; type TOutput = TVowelsExtractRes; declare function extractAllVowelsFromString(arg: TInput): TOutput; export type { TVowelsExtractRes }; export { extractAllVowelsFromString }; //# sourceMappingURL=index.d.ts.map