import { MelodyService } from './../melody-service/melody.service'; import { HyphenationService } from './hyphenation.service'; import { RenderedPsalm } from './rendered-psalm-interface'; import * as i0 from "@angular/core"; export declare class PsalmTextService { private hyphenation; private melodyService; constructor(hyphenation: HyphenationService, melodyService: MelodyService); /** * Combine melody and lyrics to a psalm verse. * * @param options.lyrics either a string that will be hyphenated ar array of syllables. */ renderPsalm(options: { melody: string; lyrics: string | string[]; }): RenderedPsalm; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }