import type { SchemaAdapterInterface } from '../../../utilities/schema'; /** * Schema adapter for Google Generative AI provider. * Converts JSON Schema to Google's Type-based format. */ export declare class GoogleSchemaAdapter implements SchemaAdapterInterface { convertSchema(jsonSchema: any): any; /** * Converts JSON Schema to Google's Type-based format */ private convertJsonSchemaToGoogleFormat; }