import type { AI } from './index.js';
type GeminiOpts = {
    apiKey?: string;
    batchSize?: number;
    think?: boolean;
    parallel?: number;
};
export declare function gemini({ apiKey, batchSize, think, parallel }?: GeminiOpts): AI | null;
export declare const defaultGemini: AI | null;
export {};
