/**
 * Service Desk Public REST API
 * Public REST API for Jira Service Desk
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 *
 *
 * 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 SourceDTO
 */
export interface SourceDTO {
    [key: string]: object | any;
    /**
     * Type of the knowledge base source
     * @type {string}
     * @memberof SourceDTO
     */
    type?: SourceDTOTypeEnum;
}
export declare function SourceDTOFromJSON(json: any): SourceDTO;
export declare function SourceDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): SourceDTO;
export declare function SourceDTOToJSON(value?: SourceDTO): any;
/**
* @export
* @enum {string}
*/
export declare enum SourceDTOTypeEnum {
    Confluence = "confluence"
}
