export interface IBackoffConfig {
    baseDelay?: number;
    maxDelay?: number;
    maxAttempts?: number;
    jitter?: boolean;
}
export type IBackoffParsedConfig = Required<IBackoffConfig>;
//# sourceMappingURL=index.d.ts.map