/**
 * 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.
 */
/**
 * [Connection state flow](#section/Connection-state)
 * @export
 * @enum {string}
 */
export declare enum ConnectionState {
    available = "available",
    callable = "callable",
    added = "added",
    authorized = "authorized",
    invalid = "invalid"
}
export declare function ConnectionStateFromJSON(json: any): ConnectionState;
export declare function ConnectionStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectionState;
export declare function ConnectionStateToJSON(value?: ConnectionState | null): any;
