/** * Class Module Cache Utilities * * Provides localStorage-based caching for classes using generic cache system. */ import { ClassBE } from "../../type"; export declare const getCachedClassesSync: () => import("@react-pakistan/util-functions/general/generic-cache").ListResponse; export declare const getCachedClasses: ({ params, }: { params: Record; }) => Promise>; export declare const getCachedClassById: (classId: string) => ClassBE | null; export declare const invalidateClassesCache: () => void; export declare const isClassesCacheStale: () => boolean; export declare const preloadClasses: () => Promise>;