/**
 * Type of config (based on type of credentials)
 * @author Gabe Abrams
 */
declare enum ZoomAPIConfigType {
    JWT = "JWT",
    Token = "Token",
    OAuth = "OAuth"
}
export default ZoomAPIConfigType;
