/**
 * 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.
 */
import { UserDTO } from './';
/**
 *
 * @export
 * @interface ApproverDTO
 */
export interface ApproverDTO {
    /**
     * Details of the User who is providing approval.
     * @type {UserDTO}
     * @memberof ApproverDTO
     */
    approver?: UserDTO;
    /**
     * Decision made by the approver.
     * @type {string}
     * @memberof ApproverDTO
     */
    approverDecision?: ApproverDTOApproverDecisionEnum;
}
export declare function ApproverDTOFromJSON(json: any): ApproverDTO;
export declare function ApproverDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApproverDTO;
export declare function ApproverDTOToJSON(value?: ApproverDTO): any;
/**
* @export
* @enum {string}
*/
export declare enum ApproverDTOApproverDecisionEnum {
    Approved = "approved",
    Declined = "declined",
    Pending = "pending"
}
