import { APIResponse, Artifact, GenshinWeapons, Weapon } from '../types/index.js';
import * as O from 'fp-ts/Option';
/**
 * Scrape google docs published page to fetch data of all weapons
 * @param type genshin weapon type/kind to fetch
 * @returns standard api response with weapons data
 * @deprecated
 */
export declare function findWeapons(type: GenshinWeapons): Promise<O.Option<APIResponse<Weapon>>>;
/**
 * Scrape google docs published page to fetch data of all artifacts
 * @returns standard api response with artifacts data
 */
export declare function findArtifacts(): Promise<O.Option<APIResponse<Artifact>>>;
//# sourceMappingURL=retrieveByScraping.d.ts.map