import type { InfraRetryOptions } from "../../types/index.js";
export declare function withRetry<T>(operation: () => Promise<T>, options: InfraRetryOptions): Promise<T>;
