import type { LC, PropsWithChildren, ArrowFunction } from '@use-gpu/live'; import type { CommandToBuffer } from '../pass.d.cts'; export type ReadbackPassProps = PropsWithChildren<{ calls: { post?: CommandToBuffer[]; readback?: ArrowFunction[]; }; }>; /** Readback pass. Executes all post-compute calls and awaits promises for readback. */ export declare const ReadbackPass: LC;