/** * Workspace Cache * * Cache utilities for workspace data using generic cache system. */ import { WorkspaceBE } from "../../type"; export declare const getCachedWorkspace: (id: string) => Promise; export declare const getCachedWorkspaceSync: () => WorkspaceBE | null; export declare const invalidateWorkspaceCache: () => void;