export declare const CLINE_WORKSPACES_DIRECTORY_NAME = "workspaces"; export declare const CLINE_CHAT_WORKSPACE_DIRECTORY_NAME = "chat"; /** * Browser-safe structural check for the shared chat workspace that hosts * sessions started without a project: `.cline/data/workspaces/chat`. Matches * the directory itself only — project folders created inside it are regular * workspaces. Matches the default data-dir layout; explicit `CLINE_DATA_DIR` * overrides are not detectable from a bare path string. */ export declare function isChatWorkspacePath(path: string): boolean;