/** * User Module Cache Utilities * * Provides localStorage-based caching for users using generic cache system. */ import { UserBE } from "../../type"; export declare const getCachedUsersSync: () => import("@react-pakistan/util-functions/general/generic-cache").ListResponse; export declare const getCachedUsers: ({ params, }: { params: Record; }) => Promise>; export declare const getCachedUserById: (userId: string) => UserBE | null; export declare const invalidateUsersCache: () => void; export declare const preloadUsers: () => Promise>; export declare const isUsersCacheStale: () => boolean;