import { OvokClient } from "../../ovok-client"; import { AIFhirRequest } from "../types/AIFhirRequest"; import { AIFhirResponse } from "../types/AIFhirResponse"; /** * AI FHIR Search uses LLMs for FHIR query planning and execution. * After the LLM generates the FHIR query plan, it's executed against the server * to generate the results, and then the results are used to create a summary response. * * @warning The search may fail or return hallucinated results due to the nature of LLMs. * * @param request - The search request containing the text to search for * @returns Promise with the search response containing markdown, plan, and results */ export declare function AIFhirResources(this: OvokClient, request: AIFhirRequest): Promise;