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