import * as http from "./http.js"; import * as dns from "./dns.js"; import * as activitypub from "./activitypub.js"; import * as reddit from "./reddit.js"; export interface Fetcher { fetch: (uri: string, options?: any) => Promise; } /** * Get a fetcher by name */ export declare function get(name: string): Fetcher | undefined; /** * Get all available fetchers */ export declare function getAll(): Record; export { http, dns, activitypub, reddit }; //# sourceMappingURL=index.d.ts.map