import Client from '../Client'; import { School } from '../Types'; export default class SchoolManager { readonly client: Client; readonly cache: Map; activeUUID: string | null; get active(): School | null; set active(school: School | string); constructor(client: Client); fetch(uuid: string, { force }?: { force?: boolean; }): Promise; } //# sourceMappingURL=SchoolManager.d.ts.map