export interface TuiSnapshot { version: 1; updatedAt: number; agentModels: Record; } export declare function getTuiStatePath(): string; export declare function readTuiSnapshot(): TuiSnapshot; export declare function readTuiSnapshotAsync(): Promise; export declare function recordTuiAgentModels(input: { agentModels: Record; }): void; export declare function recordTuiAgentModel(input: { agentName: string; model: string; }): void;