import { RetryFailure } from "./api.cjs"; //#region src/retry.d.ts /** * The built-in retry decision: retry network errors, HTTP `429`, and HTTP * `5xx`. Exported so a custom {@link RetryPolicy.shouldRetry} can compose with * it rather than reimplement it. */ declare function defaultShouldRetry(failure: RetryFailure): boolean; //#endregion export { defaultShouldRetry }; //# sourceMappingURL=retry.d.cts.map