import { SongSectionType } from './SongSectionType.js'; export declare class SongSection { readonly Type: SongSectionType; Data: string; constructor(type: SongSectionType, data: string); get DataWithMarkers(): string; IsSame(other: SongSection): boolean; }