export interface RemoteSyncRetryOptions { label: string; attempts: number; retryDelayMs: number; run: () => Promise; reset: () => Promise | void; } export declare function retryRemoteSyncOperation(options: RemoteSyncRetryOptions): Promise; export declare function isRetryableRemoteSyncError(error: unknown): boolean; //# sourceMappingURL=remote-sync-retry.d.ts.map