import { IBackoffStrategy } from "./BackoffStrategy"; export declare class ConstantBackoff implements IBackoffStrategy { readonly timeoutMs: number; readonly waitFn: (timeoutMs: number) => Promise; constructor(timeoutMs: number, waitFn?: (timeoutMs: number) => Promise); backoff(): Promise; }