import { GetPassageOptions, GetVerseOptions, Passage, Verse } from './BibleVersion';
type RemoteBibleVersion = 'KJV1769' | 'TR1624' | 'TR1894';
interface RequestVerseOptions extends GetVerseOptions {
    version: RemoteBibleVersion;
}
interface RequestPassageOptions extends GetPassageOptions {
    version: RemoteBibleVersion;
}
export declare function requestVerse(options: RequestVerseOptions): Promise<Verse>;
export declare function requestPassage(options: RequestPassageOptions): Promise<Passage>;
export {};
