import * as z from "zod/v3";
import { InstructRequest, InstructRequest$Outbound } from "./instructrequest.js";
/**
 * Chat to classify
 */
export type Inputs = InstructRequest | Array<InstructRequest>;
/** @internal */
export type Inputs$Outbound = InstructRequest$Outbound | Array<InstructRequest$Outbound>;
/** @internal */
export declare const Inputs$outboundSchema: z.ZodType<Inputs$Outbound, z.ZodTypeDef, Inputs>;
export declare function inputsToJSON(inputs: Inputs): string;
//# sourceMappingURL=inputs.d.ts.map