import { HttpTransport, HttpTransportConfig } from "../http.js"; //#region src/transports/blockcypher/blockcypher.d.ts type BlockcypherConfig = { baseUrl?: string; apiKey?: string; } & HttpTransportConfig; declare const blockcypher: (config?: BlockcypherConfig) => HttpTransport; //#endregion export { blockcypher }; //# sourceMappingURL=blockcypher.d.ts.map