import type { LC, LiveElement, PropsWithChildren } from '@use-gpu/live'; export type DispatchLoopProps = 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; }>; export declare const DispatchLoop: LC;