import type { ControlsContext, HandContext } from './types.js';
export type ComputeFunction = (state: ControlsContext, handState: HandContext) => void;
export declare const defaultComputeFunction: ComputeFunction;
