import type { SearchDepartmentsParams, SearchDepartmentsResponse } from './types'; export type DepartmentServiceConfig = { getAppId?: () => string | null | undefined; searchDepartmentUrl?: (appId: string) => string; }; export declare class DepartmentService { private config; constructor(config?: DepartmentServiceConfig); searchDepartments(params: SearchDepartmentsParams): Promise; }