import { ErrorType } from "../errors/utils.js"; import { BtcRpcRequestFn, BtcRpcRequestOptions, RpcSchema } from "../types/request.js"; //#region src/utils/buildRequest.d.ts type RequestErrorType = ErrorType; declare function buildRequest>(request: request, options?: BtcRpcRequestOptions): BtcRpcRequestFn; /** @internal */ declare function shouldRetry(error: Error): boolean; //#endregion export { RequestErrorType, buildRequest, shouldRetry }; //# sourceMappingURL=buildRequest.d.ts.map