import type { Coding, QuestionnaireItem } from 'fhir/r4'; import type { AlertColor } from '@mui/material/Alert'; declare function useTerminologyServerQuery(qItem: QuestionnaireItem, maxList: number, input: string, searchTerm: string): { options: Coding[]; loading: boolean; feedback?: { message: string; color: AlertColor; }; }; export default useTerminologyServerQuery;