/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { type PartListUnion } from '@google/genai'; /** * Represents a request to be sent to the Gemini API. * For now, it's an alias to PartListUnion as the primary content. * This can be expanded later to include other request parameters. */ export type GeminiCodeRequest = PartListUnion; export declare function partListUnionToString(value: PartListUnion): string;