/** * Fee Structure Module Cache Utilities * * Provides localStorage-based caching for fee structures using generic cache system. */ import { FeeStructureBE } from "../../type"; export declare const getCachedFeeStructuresSync: () => import("@react-pakistan/util-functions/general/generic-cache").ListResponse; export declare const getCachedFeeStructures: ({ params, }: { params: Record; }) => Promise>; export declare const getCachedFeeStructureById: (feeStructureId: string) => FeeStructureBE | null; export declare const invalidateFeeStructuresCache: () => void; export declare const preloadFeeStructures: () => Promise>; export declare const isFeeStructuresCacheStale: () => boolean;