import type { AvailableModel } from '../../execution/AvailableModel';
import type { number_usd } from '../../types/number_usd';
/**
 * List of available Google models with descriptions
 *
 * Note: Synced with official API docs at 2026-03-22
 *
 * @see https://ai.google.dev/models/gemini
 *
 * @public exported from `@promptbook/google`
 */
export declare const GOOGLE_MODELS: ReadonlyArray<AvailableModel & {
    modelDescription?: string;
    pricing?: {
        readonly prompt: number_usd;
        readonly output: number_usd;
    };
}>;
