/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * Used to select the [safety instruction](/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
 * When `NONE` is specified, the safety instruction will be omitted.
 *
 * Safety modes are not yet configurable in combination with `tools`, `tool_results` and `documents` parameters.
 *
 * **Note**: This parameter is only compatible with models [Command R 08-2024](/docs/command-r#august-2024-release), [Command R+ 08-2024](/docs/command-r-plus#august-2024-release) and newer.
 *
 * Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
 */
export declare type ChatStreamRequestSafetyMode = "CONTEXTUAL" | "STRICT" | "NONE";
export declare const ChatStreamRequestSafetyMode: {
    readonly Contextual: "CONTEXTUAL";
    readonly Strict: "STRICT";
    readonly None: "NONE";
};
