/** * Section Module Cache Utilities * * Provides localStorage-based caching for sections using generic cache system. */ import { SectionBE } from "../../type"; export declare const getCachedSectionsSync: () => import("@react-pakistan/util-functions/general/generic-cache").ListResponse; export declare const getCachedSections: ({ params, }: { params?: Record; }) => Promise>; export declare const getCachedSectionById: (sectionId: string) => SectionBE | null; export declare const invalidateSectionsCache: () => void; export declare const preloadSections: () => Promise>; export declare const isSectionsCacheStale: () => boolean;