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