export interface EsriWorkflowModelsRestJobComment {
    jobId: string;
    comment: string;
    commentId?: string | null;
    lastModifiedBy?: string | null;
    lastModified?: Date | null;
}
export declare function EsriWorkflowModelsRestJobCommentFromJSON(json: any): EsriWorkflowModelsRestJobComment;
export declare function EsriWorkflowModelsRestJobCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): EsriWorkflowModelsRestJobComment;
export declare function EsriWorkflowModelsRestJobCommentToJSON(value?: EsriWorkflowModelsRestJobComment | null): any;
