import type { LC, LiveElement, PropsWithChildren } from '@use-gpu/live'; /** @hidden */ export type ComputeLoopProps = PropsWithChildren<{ /** Always run initial iteration immediately */ initial?: boolean; /** Loop is running */ live?: boolean; /** Continue iteration count even if program changes */ continued?: boolean; /** Batch # of dispatches together */ batch?: number; /** Limit # of dispatches */ limit?: number; then?: (count: number) => LiveElement; }>; /** @hidden */ export declare const ComputeLoop: LC;