export declare function sleep(ms: number): Promise<unknown>;
export declare function executeWithRetries<T>(tag: string, fn: () => Promise<T>, opts?: {
    maxRetries?: number;
    isRetryable?: (e: Error) => boolean;
}): Promise<T>;
export declare class RetryableError extends Error {
    constructor(message: string);
}
