import { PassageReference } from '@gracious.tech/bible-references'; export interface SearchWordsResults { verse: PassageReference; word_indexes: number[]; } export declare class SearchWords { _books: Record; readonly id: string; readonly source: string; readonly source_url: string; constructor(json: string); get_words_for_ref(ref: PassageReference): string[]; search(...values: string[]): SearchWordsResults[]; }