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