export type PrismLlamaCppServerProbe = { status: "down"; servedModelIds: []; } | { status: "matching" | "conflict"; servedModelIds: string[]; }; /** Health alone is insufficient on a shared port: readiness requires the exact requested alias. */ export declare function probePrismLlamaCppServer(serverUrl: string, expectedModelId: string, fetchFn?: typeof fetch, timeoutMs?: number): Promise; //# sourceMappingURL=prism-llamacpp-server-probe.d.ts.map