import { InterimResults } from "./InterimResults";
/**
 * The translation output configuration
 */
export interface TranslationOutput {
    /**
     * Whether to include pass through results
     */
    includePassThroughResults?: boolean;
    /**
     * The interim results configuration
     */
    interimResults?: InterimResults;
}
