/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as serializers from "../index";
import * as Cohere from "../../api/index";
import * as core from "../../core";
import { SingleGeneration } from "./SingleGeneration";
import { ApiMeta } from "./ApiMeta";
export declare const Generation: core.serialization.ObjectSchema<serializers.Generation.Raw, Cohere.Generation>;
export declare namespace Generation {
    interface Raw {
        id: string;
        prompt?: string | null;
        generations: SingleGeneration.Raw[];
        meta?: ApiMeta.Raw | null;
    }
}
