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