import type { ModelArgs } from "./types";
import type OverridePrompt from "./interfaces/override_prompt";
/**
 * Processes the command line arguments to extract model parameters.
 * @param options - The command line options object.
 * @returns an object containing the model parameters.
 *
 */
export declare function processModelArgs(options: any): ModelArgs;
/**
 * Processes the override prompt file.
 * @param overridePromptFilePath - The path to the override prompt file.
 * @returns an object containing the override prompt.
 */
export declare function processOverridePromptFile(overridePromptFilePath: string): OverridePrompt;
