/**
 * Options for streaming. Will be ignored if enabled is false.
 */
export type GlobalStreamOptions = {
    /**
     * If true, the response will be streamed back to the client
     */
    enabled?: boolean;
    /**
     * Minimum number of characters per chunk that post-LLM modules operate on.
     * Default: 100.
     * Maximum: 10000.
     * Minimum: 1.
     */
    chunk_size?: number;
    /**
     * List of delimiters to split the input text into chunks.Please note, this is a required parameter when `input_translation_module_config` or `output_translation_module_config` are configured.
     * @example [
     *   "\n",
     *   ".",
     *   "?",
     *   "!"
     * ]
     * Min Items: 1.
     */
    delimiters?: string[];
};
//# sourceMappingURL=global-stream-options.d.ts.map