import type { PassageReference } from '@gracious.tech/bible-references'; import type { GlossesData } from '../assets/shared_types'; export interface GlossesWord { word: string; original: string; gloss: string; } export declare class GlossesBook { _data: GlossesData; constructor(json: string); get_words(reference: PassageReference): GlossesWord[]; get_words(chapter: number, verse: number): GlossesWord[]; }