import { school } from "../resources/school.js"; export declare const method = "searchSchool"; export declare type params = [ { search: string; } | { schoolid: number; } | { schoolname: string; } ]; export declare type result = { size: number; schools: school[]; };