/**
 * Enum representing machine detection behavior for the Connect NCCO action.
 */
declare enum MachineDetection {
    /**
     * Continue with the call if machine detection is triggered.
     */
    CONTINUE = "continue",
    /**
     * Hang up the call if machine detection is triggered.
     */
    HANGUP = "hangup"
}

export { MachineDetection };
