import { InvocationErrorCode } from './invocationErrorCode'; export declare const MIN_RETRY_AFTER = 1; export declare const DEFAULT_RETRY_OPTIONS: { retryAfter: number; retryReason: InvocationErrorCode; }; export interface RetryOptions { retryAfter: number; retryReason: InvocationErrorCode; retryData?: any; } //# sourceMappingURL=retryOptions.d.ts.map