/** * Account School Cache * * Cache utilities for account-school data using generic cache system. */ import { SchoolBE } from "../../type"; export declare const getCachedSchool: (id: string) => Promise; export declare const getCachedSchoolSync: () => SchoolBE | null; export declare const invalidateSchoolCache: () => void;