import { SongSection } from './SongSection.js'; export declare class SongWord { readonly StartIndex: number; private readonly m_Sections; IsValidSinhalaWord?: boolean; constructor(startIndex: number, sections: SongSection[]); get SectionCount(): number; SectionAt(index: number): SongSection; get Word(): string; set Word(value: string); SetInEnglish(value: string): void; get WordInSinhala(): string; private UpdateWord; private get HaveChord(); }