interface RecentFileSelection { regionName: string; timestamp: number; } export interface RecentSelectionsData { version: 1; selections: Record; } export declare function loadRecentSelections(): Promise; export declare function saveRecentSelections(data: RecentSelectionsData): Promise; export declare function getRecentSelection(data: RecentSelectionsData, filePath: string): string | undefined; export declare function setRecentSelection(data: RecentSelectionsData, filePath: string, regionName: string): void; export {};