/**
 * 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.
 */
/**
 *
 * @export
 * @interface N8NConfig
 */
export interface N8NConfig {
    /**
     *
     * @type {string}
     * @memberof N8NConfig
     */
    account: string;
    /**
     *
     * @type {string}
     * @memberof N8NConfig
     */
    webhookPath: string;
    /**
     *
     * @type {{ [key: string]: string; }}
     * @memberof N8NConfig
     */
    headers?: {
        [key: string]: string;
    };
}
/**
 * Check if a given object implements the N8NConfig interface.
 */
export declare function instanceOfN8NConfig(value: object): value is N8NConfig;
export declare function N8NConfigFromJSON(json: any): N8NConfig;
export declare function N8NConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): N8NConfig;
export declare function N8NConfigToJSON(json: any): N8NConfig;
export declare function N8NConfigToJSONTyped(value?: N8NConfig | null, ignoreDiscriminator?: boolean): any;
