/**
 * Rebuilds one logical note string from stored lines (inline text and/or NOTE/CONC/CONT sub-lines).
 */
export declare function mergeNotePayloadLines(lines: string[]): string;
export declare function gedcomFragmentForNote(note: {
    lines?: string[];
}, noteLevel: number): string;
export declare function gedcomFragmentForNotes(notes: {
    list: {
        lines?: string[];
    }[];
} | undefined, noteLevel: number): string;
