import type { LiveComponent } from '@use-gpu/live'; import type { ViewUniforms } from '@use-gpu/core'; import { mat4 } from 'gl-matrix'; export declare const MotionDispatch: LiveComponent; export declare const useMotionUniforms: (viewUniforms: Pick, maybeUniforms?: Record) => { next: () => void; uniforms: Record | { reprojectionMatrix: { current: mat4; }; inverseReprojectionMatrix: { current: mat4; }; }; };