/**
 * 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 { LinkGroup } from './';
/**
 * Details of the operations that can be performed on the issue.
 * @export
 * @interface Operations
 */
export interface Operations {
    [key: string]: object | any;
    /**
     * Details of the link groups defining issue operations.
     * @type {Array<LinkGroup>}
     * @memberof Operations
     */
    readonly linkGroups?: Array<LinkGroup>;
}
export declare function OperationsFromJSON(json: any): Operations;
export declare function OperationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Operations;
export declare function OperationsToJSON(value?: Operations): any;
