/**
 * 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.
 */
import { ConnectionDefaults } from './ConnectionDefaults';
/**
 *
 * @export
 * @interface ConnectionConfiguration
 */
export interface ConnectionConfiguration {
    /**
     *
     * @type {string}
     * @memberof ConnectionConfiguration
     */
    resource?: string;
    /**
     *
     * @type {Array<ConnectionDefaults>}
     * @memberof ConnectionConfiguration
     */
    defaults?: Array<ConnectionDefaults>;
}
export declare function ConnectionConfigurationFromJSON(json: any): ConnectionConfiguration;
export declare function ConnectionConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectionConfiguration;
export declare function ConnectionConfigurationToJSON(value?: ConnectionConfiguration | null): any;
