/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Type of authorization used by the connector
 * @export
 * @enum {string}
 */
export declare enum AuthType {
    oauth2 = "oauth2",
    apiKey = "apiKey",
    basic = "basic",
    custom = "custom",
    none = "none"
}
export declare function AuthTypeFromJSON(json: any): AuthType;
export declare function AuthTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthType;
export declare function AuthTypeToJSON(value?: AuthType | null): any;
