export interface RetryOptions { maxRetry?: number; timeout?: string; timeoutInterval?: string; } export declare function delay(duration: number): Promise; export default function Retry(options: RetryOptions): any;