import type { StreamFunction } from "../types.js"; import { type GoogleSharedStreamOptions } from "./google-shared.js"; export interface GoogleVertexOptions extends GoogleSharedStreamOptions { project?: string; location?: string; } export declare const streamGoogleVertex: StreamFunction<"google-vertex">;