import * as i0 from "@angular/core"; /** * Hyphenated string with accented syllables at the end */ interface HyphenationWithAccents { syllables: string[]; /** Indices of accented syllables */ accentedIndices: number[]; /** whether the sentence was too short to find enough accents */ wasTooShort: boolean; } export declare class HyphenationService { constructor(); hyphenate(text: string): string[]; /** * Hyphenate a string and find last accented syllables * @param numberOfAccents How many accented syllables to show */ hyphenateWithAccents(text: string, numberOfAccents?: number): HyphenationWithAccents; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export {};