import type { LC, PropsWithChildren, ArrowFunction } from '@use-gpu/live'; export type DispatchPassProps = PropsWithChildren<{ calls: { dispatch?: ArrowFunction[]; }; }>; /** Dispatch pass. Executes all dispatch calls. */ export declare const DispatchPass: LC;