export declare function retry<T>(fn: () => Promise<T>, options: {
    retries: number;
    delay: number;
}): Promise<T>;
