import type { LC, PropsWithChildren } from '@use-gpu/live'; import type { ComputeToPass, CommandToBuffer, LightEnv } from './types.d.mts'; export type RenderComputePassProps = PropsWithChildren<{ env: { light?: LightEnv; }; calls: { pre?: CommandToBuffer[]; compute?: ComputeToPass[]; }; immediate?: boolean; }>; /** Compute pass. Executes all compute calls. Can optionally run immediately instead of per-frame. */ export declare const RenderComputePass: LC;