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