/** * Student Profile Module Cache Utilities * * Provides localStorage-based caching for student profiles using generic cache system. */ import { StudentProfileBE } from "../../type"; export declare const getCachedStudentProfilesSync: () => import("@react-pakistan/util-functions/general/generic-cache").ListResponse; export declare const getCachedStudentProfiles: ({ params, }: { params?: Record; }) => Promise>; export declare const getCachedStudentProfileById: (studentProfileId: string) => StudentProfileBE | null; export declare const invalidateStudentProfilesCache: () => void; export declare const preloadStudentProfiles: () => Promise>; export declare const isStudentProfilesCacheStale: () => boolean;