import { SkillProfile } from './types'; /** * Stock skill tiers. Each is just a configuration of the same engine: * * - **beginner** — only cares about playing and lightly about dumping pips, with * high temperature and a real blunder rate: erratic, often suboptimal plays. * - **intermediate** — adds doubles-early and own-train sense, low noise. * - **advanced** — full heuristic suite (obligations, flexibility, defense), * near-deterministic, no blunders. * * Clone and tweak (`{ ...SKILL_PRESETS.advanced, temperature: 0.3 }`) for any * point on the spectrum. */ export declare const SKILL_PRESETS: Record<'beginner' | 'intermediate' | 'advanced', SkillProfile>; export type SkillLevel = keyof typeof SKILL_PRESETS; export declare function getSkillProfile(level: SkillLevel): SkillProfile;