import { GoogleLLM, GoogleLLMInput } from "@langchain/google-gauth";

//#region src/llms.d.ts
/**
 * Input to a Google Vertex AI LLM class.
 */
interface VertexAIInput extends GoogleLLMInput {}
/**
 * Integration with a Google Vertex AI LLM using
 * the "@langchain/google-gauth" package for auth.
 */
declare class VertexAI extends GoogleLLM {
  lc_namespace: string[];
  static lc_name(): string;
  constructor(fields?: VertexAIInput);
}
//#endregion
export { VertexAI, VertexAIInput };
//# sourceMappingURL=llms.d.cts.map