/** * Simple retry helper for transient API failures in the FS adapter. * * Retries once after a short delay for network errors and 5xx responses. * Does NOT retry 4xx errors (client errors like 404 are not transient). * * @module platform/adapters/fs/veryfront/retry */ /** * Execute an async function with a single retry for transient errors. * Non-transient errors (4xx, validation) are thrown immediately. */ export declare function withRetryOnTransient(fn: () => Promise, context: string): Promise; //# sourceMappingURL=retry.d.ts.map