import type { IndiGedcomSubLine } from "./IndiGedcomSubLine";
/**
 * Attribut individuel de niveau 1 (`FACT`, `DSCR`, `CAST`, …) avec sous-structures conservées.
 */
export declare class IndiAttribute {
    tag: string;
    value: string;
    children: IndiGedcomSubLine[];
    constructor(tag: string, value: string, children?: IndiGedcomSubLine[]);
    toGedcom(lineEnding: string): string;
}
