export interface TourState { step: number; artifactId: string | null; threadId: string | null; startedAt: string; } export declare function TOUR_FILE(): string; export declare function loadTourState(): TourState | null; export declare function saveTourState(state: TourState): void; export declare function clearTourState(): void;