import { DelayFn } from '../types'; /** * Always wait for the same amount of time before retrying * @param delay The amount of time in milliseconds to wait * @param fastFirst Whether to immediately retry for the first attempt */ export declare function constantDelay(delay: number, fastFirst?: boolean): DelayFn;