import type { LiveComponent, PropsWithChildren } from '@use-gpu/live'; import type { Lazy } from '@use-gpu/core'; export type IterateProps = PropsWithChildren<{ count: Lazy; }>; /** Iteration combinator for multi-gathered compute lambdas */ export declare const Iterate: LiveComponent;