/**
 * Class representing an ra file stanza. Each stanza line is split into its key
 * and value and stored as a Map, so the usual Map methods can be used on the
 * stanza.
 */
export default class RaStanza {
    data: Record<string, string>;
    name?: string;
    nameKey?: string;
    constructor(stanza?: string | string[], options?: {
        checkIndent?: boolean;
        skipValidation?: boolean;
    });
    protected validate(): void;
}
