import type { BookletLocale } from './booklet-locale';
import type { BookletPersonEntry } from './booklet-person';
import type { BookletChapter, BookletDetailLevel, BookletFamilyUnit } from './booklet-structure';
export declare function buildChapterIntroNarrative(chapter: BookletChapter, locale?: BookletLocale): string;
export declare function buildFamilyNarrative(family: BookletFamilyUnit, detailLevel: BookletDetailLevel, locale?: BookletLocale): readonly string[];
export declare function buildPersonSummaryNarrative(entry: BookletPersonEntry, locale?: BookletLocale): string;
export declare function buildPersonDetailedNarratives(entry: BookletPersonEntry, locale?: BookletLocale): readonly string[];
