import type { LC, ArrowFunction } from '@use-gpu/live'; import type { ComputeToPass, CommandToBuffer } from '../pass/types.d.mts'; export type OnProps = { dispatch?: ArrowFunction; pre?: CommandToBuffer; compute?: ComputeToPass; post?: CommandToBuffer; readback?: ArrowFunction; render?: ArrowFunction; }; export declare const On: LC;