/**
 * The result type enum
 */
export declare enum ResultType {
    Auto = "Auto",
    StableFragment = "StableFragment",
    Hypothesis = "Hypothesis",
    None = "None"
}
/**
 * The interim results
 */
export interface InterimResults {
    /**
     * The result type
     */
    resultType?: ResultType;
    /**
     * The stable threshold
     */
    stableThreshold?: number;
}
