/** * Class representing an ra file stanza. Each line is split into its key and * value and stored in the `data` record. The key and value of the first line * are also exposed as `nameKey` and `name`. */ export default class RaStanza { data: Record; name?: string; nameKey?: string; constructor(stanza?: string | string[], options?: { checkIndent?: boolean; skipValidation?: boolean; }); protected validate(): void; }