export declare const withRetry: <T>(fn: () => Promise<T>, retries?: number, signal?: AbortSignal) => Promise<T>;
