/** * Teacher Module Cache Utilities * * Provides localStorage-based caching for teachers using generic cache system. */ import { TeacherBE } from "../../type"; export declare const getCachedTeachersSync: () => import("@react-pakistan/util-functions/general/generic-cache").ListResponse; export declare const getCachedTeachers: ({ params, }: { params?: Record; }) => Promise>; export declare const getCachedTeacherById: (teacherId: string) => TeacherBE | null; export declare const invalidateTeachersCache: () => void; export declare const preloadTeachers: () => Promise>; export declare const isTeachersCacheStale: () => boolean;