/**
 * Vectorize API (Beta)
 * API for Vectorize services
 *
 * The version of the OpenAPI document: 0.0.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { DestinationConnectorType } from './DestinationConnectorType';
/**
 *
 * @export
 * @interface DestinationConnectorSchema
 */
export interface DestinationConnectorSchema {
    /**
     *
     * @type {string}
     * @memberof DestinationConnectorSchema
     */
    id: string;
    /**
     *
     * @type {DestinationConnectorType}
     * @memberof DestinationConnectorSchema
     */
    type: DestinationConnectorType;
    /**
     *
     * @type {{ [key: string]: any | null; }}
     * @memberof DestinationConnectorSchema
     */
    config?: {
        [key: string]: any | null;
    };
}
/**
 * Check if a given object implements the DestinationConnectorSchema interface.
 */
export declare function instanceOfDestinationConnectorSchema(value: object): value is DestinationConnectorSchema;
export declare function DestinationConnectorSchemaFromJSON(json: any): DestinationConnectorSchema;
export declare function DestinationConnectorSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): DestinationConnectorSchema;
export declare function DestinationConnectorSchemaToJSON(json: any): DestinationConnectorSchema;
export declare function DestinationConnectorSchemaToJSONTyped(value?: DestinationConnectorSchema | null, ignoreDiscriminator?: boolean): any;
