import { FunctionCallingMode } from "@google-cloud/vertexai";
import { LlmToolChoice } from "../llm-core-provider";
export declare const toolChoiceToVertexAi: (hasTools: boolean, toolChoice?: LlmToolChoice) => {
    functionCallingConfig: {
        mode: FunctionCallingMode;
    };
} | undefined;
