/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * The reason a chat request has finished.
 */
export declare type ChatFinishReason = "complete" | "stop_sequence" | "max_tokens" | "tool_call" | "error" | "content_blocked" | "error_limit";
export declare const ChatFinishReason: {
    readonly Complete: "complete";
    readonly StopSequence: "stop_sequence";
    readonly MaxTokens: "max_tokens";
    readonly ToolCall: "tool_call";
    readonly Error: "error";
    readonly ContentBlocked: "content_blocked";
    readonly ErrorLimit: "error_limit";
};
