import { Schedule } from "effect"; export type BackoffConfig = { readonly maxRetries?: number; readonly baseDelay?: number; readonly maxDelay?: number; readonly jitter?: boolean; }; export declare const makeBackoffSchedule: (config?: BackoffConfig) => Schedule.Schedule; //# sourceMappingURL=schedule.d.ts.map