/**
 * Disfluency handling options.
 */
export declare enum DisfluencyMode {
    /**
     * The Microsoft Speech Service does not remove disfluencies from all results.
     */
    Raw = "Raw",
    /**
     * The Microsoft Speech Service removes disfluencies from all results.
     */
    Removed = "Removed",
    /**
     * The Microsoft Speech Service tags disfluencies in the phrase result.
     */
    Labeled = "Labeled"
}
