/**
 * 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 { ClassifyResponseClassificationsItem } from "./ClassifyResponseClassificationsItem";
import { ApiMeta } from "./ApiMeta";
export declare const ClassifyResponse: core.serialization.ObjectSchema<serializers.ClassifyResponse.Raw, Cohere.ClassifyResponse>;
export declare namespace ClassifyResponse {
    interface Raw {
        id: string;
        classifications: ClassifyResponseClassificationsItem.Raw[];
        meta?: ApiMeta.Raw | null;
    }
}
