import type { RetryOptions } from "./types";
export declare const retry: <T>(fn: () => Promise<T>, options?: RetryOptions) => Promise<T>;
