/** Sous-structure sous un `1 NAME` (niveau ≥ 2) ou sous un attribut individuel (niveau ≥ 2). */
export type IndiGedcomSubLine = {
    level: string;
    tag: string;
    value: string;
};
