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