import { School } from "./wrappers/index.js"; /** * Searches all Schools by their name and returns a list of matching schools. * @param name the name to look for * @returns a list of matching schools. If there are too many results, the list is empty */ export declare function searchSchoolsByName(name: string): Promise; /** * Finds a school by its id. * @param id the school's id * @returns the school or null if the id is invalid. */ export declare function getSchoolById(id: number): Promise; /** * Finds a school by its login name. * @param loginName the school's login name * @returns the school or null if the login name is invalid. */ export declare function getSchoolByLoginName(loginName: string): Promise;