import { type TomlTable } from "../config"; import type { OperationOptions, SetDefaultResult, SetSkillEnabledResult } from "../operations"; export declare function setDefaultMode(mode: string, options?: OperationOptions): Promise; export declare function unsetDefaultMode(options?: OperationOptions): Promise; export declare function setDefaultPersona(persona: string, options?: OperationOptions): Promise; export declare function unsetDefaultPersona(options?: OperationOptions): Promise; export declare function setSkillEnabled(skillId: string, enabled: boolean, options?: OperationOptions): Promise; export declare function updateDoctorState(status: "ok" | "issues", options?: OperationOptions): Promise; export declare function ensureSupercodexTable(config: TomlTable): TomlTable; export declare function ensureChildTable(parent: TomlTable, key: string): TomlTable;