/** * Batched reactive updates. */ /** * Batches multiple signal updates into a single notification cycle. * * Updates made inside the batch function are deferred until the batch * completes, preventing intermediate re-renders and improving performance. * * @param fn - Function containing multiple signal updates */ export declare const batch: (fn: () => void) => void; //# sourceMappingURL=batch.d.ts.map