import { DelayFn } from '../types'; /** * Wait for a linearly increasing amount of time before retrying * @param delay The amount of time in milliseconds to increase the delay by * @param fastFirst Whether to immediately retry for the first attempt */ export declare function linearDelay(delay: number, fastFirst?: boolean): DelayFn;