/**
 * @description
 * Current Status of the Microphone
 */
declare enum AugnitoStatus {
    /**
     * @description
     * Microphone is On
     */
    ON = "On",
    /**
     * @description
     * Microphone is Off
     */
    OFF = "Off",
    /**
     * @description
     * Microphone is Off
     */
    REQUEST_OFF = "RequestOff",
    /**
     * @description
     * KEY TO be used in localstorage
     */
    KEY = "AugnitoConnectionStatus"
}
export { AugnitoStatus };
